/* ═══════════════════════════════════════════════════════
   TRITOOLS MACHINERY  v4  — Professional · Responsive
   Primary #b02326 | Grad #dc423d → #982022
   Fonts: Inter (body) + Sora (headings)
════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1c1917;
  line-height: 1.65;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit
}

:root {
  --red: #b02326;
  --red-d: #982022;
  --red-l: #dc423d;
  --red-xs: #fff5f5;
  --red-sm: #fde8e8;
  --grad: linear-gradient(135deg, #dc423d 0%, #b02326 55%, #982022 100%);
  --grad-h: linear-gradient(90deg, #dc423d, #982022);
  --sh-red: 0 16px 48px rgba(176, 35, 38, .28);
  --ink: #1c1917;
  --ink-2: #44403c;
  --ink-3: #78716c;
  --ink-4: #a8a29e;
  --bg: #ffffff;
  --bg-warm: #faf9f7;
  --bg-stone: #f5f3f0;
  --dark: #111110;
  --dark-2: #1a1917;
  --border: #e7e5e2;
  --border-r: rgba(176, 35, 38, .15);
  --r: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --t: .3s;
  --maxw: 1280px;
  --px: clamp(20px, 4vw, 48px);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--px)
}

.section-py {
  padding-block: clamp(60px, 7vw, 110px)
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ── Eyebrow ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--red-sm);
  border: 1px solid var(--border-r);
  margin-bottom: 16px
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0
}

.eyebrow.light {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2)
}

.eyebrow.light::before {
  background: #fff
}

/* ── Headings ────────────────────────────────────────── */
.h-display {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink)
}

.h-display.light {
  color: #fff
}

.section-lead {
  font-size: 1rem;
  color: var(--ink-3);
  max-width: 540px;
  margin-top: 12px;
  line-height: 1.75
}

.center-header {
  text-align: center
}

.center-header .section-lead {
  margin-inline: auto
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  border: none;
  transition: transform .28s var(--spring), box-shadow .28s var(--ease), background .22s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--sh-red)
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 56px rgba(176, 35, 38, .38)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border)
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-xs)
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35)
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff
}

.btn-white {
  background: #fff;
  color: var(--red-d);
  font-weight: 700
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .14)
}

.btn-sm {
  padding: 9px 20px;
  font-size: .8rem
}

.btn-lg {
  padding: 15px 32px;
  font-size: .92rem
}

.btn-full {
  width: 100%;
  justify-content: center
}

.btn .icon {
  transition: transform .25s var(--ease)
}

.btn:hover .icon {
  transform: translateX(4px)
}

/* ── Progress bar ────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(176, 35, 38, .5);
  transition: width .12s linear
}

/* ════════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  padding: 8px 0;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .5)
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px
}

.topbar-item i {
  color: var(--red-l);
  font-size: .75rem
}

.topbar-item a {
  color: rgba(255, 255, 255, .55)
}

.topbar-item a:hover {
  color: #fff
}

.topbar-right {
  margin-left: auto;
  display: flex;
  gap: 14px
}

.topbar-social a {
  color: rgba(255, 255, 255, .4);
  font-size: .8rem;
  transition: color var(--t)
}

.topbar-social a:hover {
  color: var(--red-l)
}

/* ════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .35s var(--ease), background .35s var(--ease)
}

.header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .07)
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding-block: 14px
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0
}

.logo-svg {
  width: 44px;
  height: 44px
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px
}

.logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  color: var(--ink)
}

.logo-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red)
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative
}

.nav-item {
  font-weight: 500;
  font-size: .84rem;
  color: var(--ink-3);
  padding: 8px 13px;
  border-radius: var(--r);
  transition: color var(--t), background var(--t);
  position: relative;
  white-space: nowrap
}

.nav-item:hover,
.nav-item.active {
  color: var(--ink);
  background: var(--bg-warm)
}

/* Products submenu trigger */
.nav-has-sub {
  position: relative
}

.nav-has-sub>.nav-item {
  display: flex;
  align-items: center;
  gap: 5px
}

.nav-has-sub>.nav-item i {
  font-size: .6rem;
  transition: transform .3s var(--ease)
}

.nav-has-sub:hover>.nav-item i {
  transform: rotate(180deg)
}

/* Submenu */
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 420px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 200
}

.submenu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 7px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, .08))
}

.nav-has-sub:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.sub-item {
  display: block;
  padding: 8px 12px;
  border-radius: var(--r);
  font-size: .84rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: all var(--t);
  cursor: pointer
}

.sub-item:hover {
  background: var(--red-xs);
  color: var(--red)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0
}

@media (min-width: 861px) {
  .logo {
    flex: 1 0 0
  }

  .header-actions {
    flex: 1 0 0;
    justify-content: flex-end;
    margin-left: 0
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--bg-stone);
  border: 1px solid var(--border);
  margin-left: auto;
  flex-shrink: 0;
  transition: background var(--t)
}

.hamburger:hover {
  background: var(--red-sm)
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
  margin: 0 auto
}

.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)
}

/* ════════════════════════════════════════════════════
   OFF-CANVAS MOBILE MENU
════════════════════════════════════════════════════ */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}

.offcanvas-overlay.open {
  opacity: 1;
  visibility: visible
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.offcanvas.open {
  transform: translateX(0)
}

.offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.offcanvas-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-stone);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: .85rem;
  transition: all var(--t);
}

.offcanvas-close:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

.offcanvas-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0
}

.offcanvas-body::-webkit-scrollbar {
  width: 4px
}

.offcanvas-body::-webkit-scrollbar-track {
  background: var(--bg-warm)
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px
}

.oc-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink-2);
  transition: background var(--t), color var(--t);
  border-bottom: 1px solid var(--bg-stone);
}

.oc-nav-item:hover,
.oc-nav-item.active {
  background: var(--red-sm);
  color: var(--red)
}

.oc-nav-item i.arrow {
  font-size: .65rem;
  transition: transform .3s var(--ease);
  color: var(--ink-4)
}

.oc-nav-item.sub-open i.arrow {
  transform: rotate(90deg)
}

.oc-submenu {
  background: var(--bg-warm);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.oc-submenu.open {
  max-height: 600px
}

.oc-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px 11px 36px;
  font-size: .86rem;
  color: var(--ink-3);
  transition: color var(--t), background var(--t);
  border-bottom: 1px solid var(--border);
}

.oc-sub-item:last-child {
  border-bottom: none
}

.oc-sub-item:hover {
  color: var(--red);
  background: var(--red-sm)
}

.oc-sub-item i {
  color: var(--red-l);
  font-size: .72rem;
  flex-shrink: 0
}

.offcanvas-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.oc-contact-info {
  font-size: .78rem;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 7px
}

.oc-contact-info i {
  color: var(--red-l)
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 760px;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
}

@supports (height:100dvh) {
  .hero {
    height: min(100dvh, 860px);
    min-height: 600px;
  }
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  overflow: hidden
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
  will-change: transform;
}

.swiper-slide-active .hero-bg-img {
  transform: scale(1)
}

/* Industrial background images */
.slide-1 .hero-bg-img {
  background-image: url('https://images.unsplash.com/photo-1537462715879-360eeb61a0bc?w=1800&q=90');
  background-position: center 40%
}

.slide-2 .hero-bg-img {
  background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1800&q=90');
  background-position: center 50%
}

.slide-3 .hero-bg-img {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=90');
  background-position: center 45%
}

.slide-4 .hero-bg-img {
  background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1800&q=90');
  background-position: center 50%
}

.slide-5 .hero-bg-img {
  background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=1800&q=90');
  background-position: center 40%
}

.hero-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 7, 6, .92) 0%, rgba(8, 7, 6, .6) 38%, rgba(8, 7, 6, .22) 68%, transparent 100%),
    linear-gradient(to right, rgba(8, 7, 6, .55) 0%, rgba(8, 7, 6, .15) 50%, transparent 100%);
}

/* single content block */
.hero-content-wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-bottom: 76px;
  /* Offset for stat strip height */
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: auto;
  /* enable click on buttons */
  padding: 0
}

.hero-content {
  max-width: 700px
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 20px
}

.hero-kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-l);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 66, 61, .7)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(220, 66, 61, 0)
  }
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-desc {
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  color: rgba(255, 255, 255, .62);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

/* stat strip — fixed 76px height so padding-bottom above is always stable */
.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 76px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-top: 3px solid transparent;
  border-image: var(--grad-h) 1;
  display: flex;
  align-items: stretch;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none
}

.stat-val {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-lbl {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 3px
}

/* Pagination Wrapper inside Container */
.hero-pagination-wrapper {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none
}

.hero-pagination-wrapper .hero-pagination {
  position: relative !important;
  bottom: 0 !important;
  left: 0 !important;
  width: auto !important;
  display: inline-flex;
  pointer-events: auto;
  margin-left: -4px
    /* Offset bullet margins to align with left edge of container text */
}

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .35);
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  transition: all .3s
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 28px;
  border-radius: 4px
}

.hero-prev,
.hero-next {
  display: none
}

/* ════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden
}

.trust-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 16px;
  text-align: center
}

.trust-scroll {
  overflow: hidden;
  position: relative
}

.trust-scroll::before,
.trust-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1
}

.trust-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-warm), transparent)
}

.trust-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-warm), transparent)
}

.trust-track {
  display: flex;
  align-items: center;
  animation: scroll-trust 28s linear infinite;
  width: max-content
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 32px;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-4);
  white-space: nowrap
}

.trust-item i {
  color: var(--red-l);
  font-size: .8rem
}

@keyframes scroll-trust {
  to {
    transform: translateX(-50%)
  }
}

/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center
}

.about-visual {
  position: relative
}

.about-img-stack {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-2xl);
  display: block
}

.about-img-stack::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 32px;
  bottom: 32px;
  background: var(--red-sm);
  border-radius: calc(var(--r-2xl) + 6px);
  z-index: -1
}

.about-img-stack::after {
  content: '';
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 100px;
  height: 100px;
  background: var(--grad);
  border-radius: var(--r-xl);
  z-index: 0;
  opacity: .15
}

.about-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2
}

.about-badge-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--grad);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem
}

.about-badge-text strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink)
}

.about-badge-text span {
  font-size: .72rem;
  color: var(--ink-3)
}

.about-stat-card {
  position: absolute;
  top: 32px;
  right: -28px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  text-align: center;
  z-index: 2;
  animation: float-y 4s ease-in-out infinite
}

.about-stat-card .num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1
}

.about-stat-card .lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.about-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg-warm);
  transition: border-color var(--t), box-shadow var(--t)
}

.about-list-item:hover {
  border-color: var(--border-r);
  box-shadow: 0 4px 16px rgba(176, 35, 38, .07)
}

.about-list-item .check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--red-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .62rem;
  margin-top: 1px
}

.about-list-item p {
  font-size: .86rem;
  color: var(--ink-2);
  line-height: 1.55
}

.about-list-item strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: .88rem;
  margin-bottom: 2px
}

/* ════════════════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════════════════ */
.services-section {
  background: var(--dark);
  overflow: hidden;
  position: relative
}

.services-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 90% 10%, rgba(176, 35, 38, .12) 0%, transparent 70%), radial-gradient(ellipse 600px 500px at 5% 90%, rgba(176, 35, 38, .08) 0%, transparent 70%);
  pointer-events: none
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: clamp(36px, 5vw, 60px)
}

.service-cell {
  background: var(--dark-2);
  padding: clamp(24px, 3vw, 40px) clamp(18px, 2.5vw, 32px);
  transition: background .35s var(--ease);
  position: relative;
  overflow: hidden
}

.service-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.service-cell:hover {
  background: rgba(176, 35, 38, .08)
}

.service-cell:hover::before {
  transform: scaleX(1)
}

.service-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  transition: color .35s
}

.service-cell:hover .service-num {
  color: rgba(176, 35, 38, .2)
}

.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(176, 35, 38, .15);
  border: 1px solid rgba(176, 35, 38, .25);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-l);
  font-size: 1.05rem;
  margin-bottom: 16px;
  transition: all .35s var(--spring)
}

.service-cell:hover .service-icon {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1)
}

.service-cell h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 8px
}

.service-cell p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.65
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--red-l);
  transition: gap .25s var(--ease)
}

.service-cell:hover .service-arrow {
  gap: 10px
}

/* ════════════════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════════════════ */
.products-section {
  background: var(--bg-warm)
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 52px);
  flex-wrap: wrap
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .09);
  border-color: var(--border-r)
}

.product-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-stone);
  display: flex;
  align-items: center;
  justify-content: center
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-img-inner {
  font-size: 3.5rem;
  color: rgba(176, 35, 38, .1);
  transition: transform .5s var(--ease)
}

.product-card:hover .product-img-inner {
  transform: scale(1.12) rotate(-5deg)
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s var(--ease)
}

.product-card:hover .product-img-overlay {
  opacity: .05
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-r)
}

.product-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.product-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  margin-bottom: 7px
}

.product-desc {
  font-size: .82rem;
  color: var(--ink-3);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border)
}

.product-enquire {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s
}

.product-enquire:hover {
  gap: 10px
}

.product-icon-mini {
  width: 34px;
  height: 34px;
  background: var(--red-sm);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .8rem;
  transition: background .3s, color .3s
}

.product-card:hover .product-icon-mini {
  background: var(--grad);
  color: #fff
}

.product-card-cta {
  background: var(--grad);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 24px;
  min-height: 200px
}

.product-card-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(176, 35, 38, .28)
}

.product-card-cta i {
  font-size: 2rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
  display: block
}

.product-card-cta h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px
}

.product-card-cta p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 20px
}

/* ════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════ */
.process-section {
  background: var(--bg-stone)
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center
}

.process-visual {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden
}

.process-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-2xl);
  display: block
}

.process-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, .7) 0%, transparent 60%)
}

.process-img-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px
}

.process-img-caption i {
  color: var(--red-l);
  font-size: 1.1rem
}

.process-img-caption strong {
  display: block;
  font-size: .86rem;
  font-weight: 600
}

.process-img-caption span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6)
}

.process-steps {
  display: flex;
  flex-direction: column
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: default
}

.process-step:last-child {
  border-bottom: none
}

.step-line {
  display: flex;
  flex-direction: column;
  align-items: center
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: var(--ink-4);
  background: #fff;
  transition: all .35s var(--ease)
}

.process-step:hover .step-circle,
.process-step.active .step-circle {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-red)
}

.step-connector {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin-top: 6px;
  min-height: 12px
}

.process-step:last-child .step-connector {
  display: none
}

.step-content {
  padding: 6px 0 6px 14px
}

.step-content h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 5px
}

.step-content p {
  font-size: .83rem;
  color: var(--ink-3);
  line-height: 1.65
}

/* ════════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════════ */
.why-section {
  background: var(--dark);
  overflow: hidden;
  position: relative
}

.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 700px at 50% 50%, rgba(176, 35, 38, .09) 0%, transparent 70%);
  pointer-events: none
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: clamp(36px, 5vw, 60px)
}

.why-cell {
  background: var(--dark-2);
  padding: clamp(24px, 3vw, 40px) clamp(18px, 2.5vw, 32px);
  transition: background .35s var(--ease);
  position: relative;
  overflow: hidden
}

.why-cell:hover {
  background: rgba(176, 35, 38, .06)
}

.why-cell-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r);
  background: rgba(176, 35, 38, .15);
  border: 1px solid rgba(176, 35, 38, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-l);
  font-size: 1.15rem;
  margin-bottom: 18px;
  transition: all .35s var(--spring)
}

.why-cell:hover .why-cell-icon {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08) rotate(-4deg)
}

.why-cell h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 8px
}

.why-cell p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.65
}

.why-cell-num {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  transition: color .35s
}

.why-cell:hover .why-cell-num {
  color: rgba(176, 35, 38, .08)
}

/* ════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: var(--grad)
}

.cta-band-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E")
}

.cta-glow {
  position: absolute;
  top: -40%;
  left: -10%;
  width: 70%;
  padding-bottom: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, .13) 0%, transparent 70%);
  animation: glow-drift 8s ease-in-out infinite alternate
}

@keyframes glow-drift {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(10%, 15%)
  }
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap
}

.cta-copy h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 8px
}

.cta-copy p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .72);
  max-width: 420px
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════ */
/* ── Testimonials ── */
.testi-section {
  background: var(--bg-warm)
}

.testi-swiper-wrap {
  position: relative;
  padding-bottom: 56px
}

.testi-swiper {
  overflow: hidden !important;
  will-change: transform;
  transform: translateZ(0);
}

.testi-swiper .swiper-wrapper {
  align-items: stretch;
  box-sizing: border-box
}

.testi-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  height: 100%;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  box-sizing: border-box;
  isolation: isolate;
}

.testi-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  border-color: var(--border-r)
}

.testi-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--red-sm);
  pointer-events: none;
  user-select: none
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px
}

.testi-stars i {
  color: #f59e0b;
  font-size: .8rem
}

.testi-text {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid var(--border)
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  color: #fff;
  flex-shrink: 0
}

.testi-foot strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink)
}

.testi-foot span {
  font-size: .72rem;
  color: var(--ink-4)
}

.testi-pagination {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: calc(100% - 96px) !important;
  text-align: left !important;
}

.testi-pagination .swiper-pagination-bullet {
  background: var(--border);
  width: 8px;
  height: 8px;
  opacity: 1;
  transition: width .3s var(--ease), background .3s
}

.testi-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  width: 28px;
  border-radius: 4px
}

.testi-prev,
.testi-next {
  position: absolute !important;
  color: var(--ink) !important;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  bottom: 0 !important;
  top: auto !important;
  margin: 0 !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  transition: background .25s var(--ease), border-color .25s, color .25s;
}

.testi-prev {
  left: auto !important;
  right: 48px !important
}

.testi-next {
  right: 0 !important;
  left: auto !important
}

.testi-prev:hover,
.testi-next:hover {
  background: var(--red);
  color: #fff !important;
  border-color: var(--red)
}

.testi-prev::after,
.testi-next::after {
  font-size: 12px !important;
  font-weight: 700 !important
}

/* ════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-stone)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  transition: all .3s var(--ease)
}

.contact-card:hover {
  border-color: var(--border-r);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06)
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red-sm);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .95rem;
  transition: all .35s var(--spring)
}

.contact-card:hover .contact-card-icon {
  background: var(--grad);
  color: #fff;
  transform: scale(1.08)
}

.contact-card-body strong {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink);
  margin-bottom: 3px
}

.contact-card-body a,
.contact-card-body p {
  font-size: .82rem;
  color: var(--ink-3);
  line-height: 1.6
}

.contact-card-body a:hover {
  color: var(--red)
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad)
}

.form-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -.02em
}

.form-sub {
  font-size: .82rem;
  color: var(--ink-3);
  margin-bottom: 24px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.field {
  margin-bottom: 14px
}

.field label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: var(--ink);
  padding: 11px 15px;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(176, 35, 38, .09)
}

.field textarea {
  min-height: 96px;
  resize: vertical
}

.form-success {
  display: none;
  margin-top: 12px;
  padding: 11px 15px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r);
  color: #166534;
  font-size: .83rem;
  font-weight: 500;
  text-align: center
}

.form-success.show {
  display: block
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(48px, 6vw, 88px)
}

.footer-brand p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 240px
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: .8rem;
  transition: all .3s var(--spring)
}

.footer-social a:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px)
}

.footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 16px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .68);
  transition: color .25s, padding-left .25s
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px
}

.footer-contact-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 10px
}

.footer-contact-item i {
  color: var(--red-l);
  margin-top: 3px;
  font-size: .78rem;
  flex-shrink: 0
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6
}

.footer-contact-item a:hover {
  color: var(--red-l)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap
}

.footer-bottom p {
  font-size: .73rem;
  color: rgba(255, 255, 255, .5)
}

/* ════════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════════ */
.btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-red);
  opacity: 0;
  transform: translateY(12px) scale(.8);
  transition: all .35s var(--spring)
}

.btt.show {
  opacity: 1;
  transform: none
}

.btt:hover {
  transform: translateY(-4px) scale(1.1)
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Tablet 1100px
════════════════════════════════════════════════════ */
@media(max-width:1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .submenu {
    width: 400px
  }

  .hero-stat .stat-val {
    font-size: 1.6rem
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Mobile 860px
════════════════════════════════════════════════════ */
@media(max-width:860px) {

  .about-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-visual {
    order: -1
  }

  .about-stat-card {
    right: -4px;
    top: 20px
  }

  .process-visual {
    order: -1
  }

  /* Hide desktop nav, show hamburger */
  .nav,
  .header-actions .btn {
    display: none
  }

  .hamburger {
    display: flex
  }

  /* hero */
  .hero-stats-strip {
    display: none
  }

  .hero {
    height: 520px;
    min-height: 480px
  }

  .hero-content-wrapper {
    padding-bottom: 40px
  }

  .hero-pagination-wrapper {
    bottom: 28px
  }

  /* Products header */
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Mobile 600px
════════════════════════════════════════════════════ */
@media(max-width:600px) {
  .topbar-item:not(:first-child):not(.topbar-right) {
    display: none
  }

  .topbar-right {
    margin-left: auto
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .products-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-main {
    grid-template-columns: 1fr
  }

  .cta-inner {
    flex-direction: column;
    text-align: center
  }

  .cta-actions {
    justify-content: center
  }

  .testi-prev,
  .testi-next {
    display: none !important
  }

  .testi-pagination {
    width: 100% !important
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.8rem)
  }

  .hero-desc {
    font-size: .88rem
  }

  .contact-form-card {
    padding: 22px 18px
  }
}

@media(max-width:420px) {
  .hero-ctas {
    flex-direction: column
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center
  }

  .about-stat-card {
    display: none
  }
}