/* ==================================================
   STOCK — Sistemas de Armazenagem
   ================================================== */

:root {
  --orange: #F04E23;
  --orange-hover: #D63E16;
  --orange-deep: #C43816;
  --blue: #1E2DB4;
  --blue-deep: #131F88;
  --blue-dark: #0C1230;
  --cream: #F3EFE6;
  --gray-light: #EAE6DD;
  --gray-mid: #D4CFC5;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --muted: #6B6B6B;
  --blue-ink: #0E1846;
  --line: #DAD3C5;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ==========  BUTTONS  ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: white;
}
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-2px); }
.btn-blue {
  background: var(--blue);
  color: white;
  padding: 16px 36px;
}
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline-white:hover { background: white; color: var(--blue-dark); }
.btn-ghost-orange {
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-ghost-orange:hover { background: var(--orange); color: white; }
.btn-arrow::after {
  content: "";
  width: 14px; height: 14px;
  background: url('uploads/icon seta.png') no-repeat center / contain;
  filter: brightness(0) invert(1);
}

/* ==========  HEADER  ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.site-header.scrolled { border-bottom-color: rgba(255,255,255,0.12); }
.site-header.scrolled {
  background: var(--blue);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.scroll-progress {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  background: var(--orange);
  width: 0;
  transition: width 0.1s linear;
  z-index: 2;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo-mark {
  display: flex;
  align-items: center;
  color: white;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}
.main-nav a {
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.25s;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { width: 100%; }
.main-nav a.is-active { color: white; }
.nav-caret {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  transform: translateY(-1px);
  transition: transform 0.25s;
}
.has-mega:hover .nav-caret { transform: rotate(180deg); }

/* ===== MEGA MENU — fullscreen overlay ===== */
.mega-wrap {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  pointer-events: none;
}
.mega-wrap.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--blue-ink);
}
.mega-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  background-image: url('assets/mega-warehouse.webp');
  background-size: cover;
  background-position: center;
  clip-path: inset(0 0 0 0);
  transform: scale(1.08);
  transition: transform 6s ease;
}
.mega-wrap.open .mega-photo { transform: scale(1); animation: megaWipe 0.7s cubic-bezier(.5,0,.2,1) both; }
@keyframes megaWipe {
  from { clip-path: inset(0 0 0 100%); }
  to   { clip-path: inset(0 0 0 0); }
}
.mega-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--blue-ink) 0%, rgba(14,24,70,0.9) 22%, rgba(14,24,70,0.55) 100%),
    linear-gradient(180deg, rgba(14,24,70,0.25), rgba(14,24,70,0.45));
}
/* Big hex 'S' watermark behind the columns — brand structure */
.mega-hexmark {
  position: absolute;
  left: -60px; top: 50%;
  transform: translateY(-50%);
  width: 460px; height: 520px;
  z-index: 2;
  background-image: url('assets/emblema-s.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  opacity: 0.05;
  pointer-events: none;
}
.mega-close {
  position: absolute;
  top: 26px; right: 30px;
  z-index: 4;
  width: 46px; height: 46px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.mega-close:hover { background: var(--orange); border-color: var(--orange); transform: rotate(90deg); }
.mega-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.mega-head, .mega-columns { width: 48%; max-width: 640px; }
.mega-wrap.open .mega-head,
.mega-wrap.open .mega-columns {
  animation: megaUp 0.6s cubic-bezier(.2,.7,.2,1) both;
}
.mega-wrap.open .mega-head { animation-delay: 0.14s; }
.mega-wrap.open .mega-columns { animation-delay: 0.22s; }
@keyframes megaUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.mega-head .mega-h-strong { font-weight: 800; color: #fff; }
.mega-head p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-top: 12px;
}
.mega-columns {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.mega-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.mega-col ul { list-style: none; }
.mega-col li { margin-bottom: 4px; }
.mega-col li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 6px 10px 6px 0;
  transition: color 0.18s, transform 0.18s;
}
.mega-bullet {
  color: rgba(255,255,255,0.25);
  display: flex;
  transition: color 0.18s;
}
.mega-col li a:hover,
.mega-col li a.active { color: #fff; transform: translateX(4px); }
.mega-col li a:hover .mega-bullet,
.mega-col li a.active .mega-bullet { color: var(--orange); }
.mega-star {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(242,101,34,0.55);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
}
.mega-col-serv { display: flex; flex-direction: column; }
.mega-project {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  align-self: flex-start;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 13px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: all 0.2s;
}
.mega-project:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.mega-arrow { font-weight: 700; }

@media (max-width: 1150px) {
  .mega-panel .mega-photo, .mega-panel .mega-stage { display: none; }
  .mega-head, .mega-columns { width: 100%; max-width: 900px; }
  .mega-panel { background: linear-gradient(135deg, #16205f 0%, var(--blue-ink) 100%); }
}

/* Reactive product image as the right-side background */
.mega-stage {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  z-index: 3;
  pointer-events: none;
}
.mega-shots { position: absolute; inset: 0; background: linear-gradient(160deg, #fff 0%, var(--gray-light) 100%); overflow: hidden; }
.mega-wrap.open .mega-shots { animation: megaWipe 0.7s cubic-bezier(.5,0,.2,1) both; }
@keyframes megaWipe {
  from { clip-path: inset(0 0 0 100%); }
  to   { clip-path: inset(0 0 0 0); }
}
.mega-bgshot {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 3.5s ease;
}
.mega-bgshot.show { opacity: 1; transform: scale(1); }
.mega-shots::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--blue-ink) 0%, rgba(14,24,70,0.5) 18%, rgba(14,24,70,0) 46%),
    linear-gradient(0deg, rgba(14,24,70,0.55) 0%, rgba(14,24,70,0) 42%);
}
.mega-caption {
  position: absolute;
  left: 8%; right: 8%; bottom: 8%;
  z-index: 2;
  pointer-events: auto;
  animation: megaInfoFade 0.4s ease both;
}
@keyframes megaInfoFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-cap-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.mega-caption h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0 10px;
  line-height: 1.02;
}
.mega-caption p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  max-width: 420px;
  margin-bottom: 18px;
}
.mega-cap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: var(--orange);
  padding: 12px 24px;
  border-radius: 999px;
  transition: gap 0.2s, background 0.2s;
}
.mega-cap-link:hover { gap: 12px; background: var(--orange-hover); }
.mega-card-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.mega-card-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-ink);
  margin: 7px 0 10px;
  line-height: 1.05;
}
.mega-card-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.mega-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  transition: gap 0.2s;
}
.mega-card-link:hover { gap: 12px; }
.header-cta-btn {
  padding: 13px 26px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  color: white;
  align-items: center; justify-content: center;
}

/* ==========  HERO  ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #0a0e26;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,40,0.55) 0%, rgba(8,12,40,0.55) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(40,60,200,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 95% 70%, rgba(200,40,30,0.30) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}
.hero-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* amplia ~35% além da área visível: corta a barra de título (topo)
     e a marca/controles do YouTube (rodapé) via overflow:hidden do wrap */
  transform: translate(-50%, -50%) scale(1.35);
  pointer-events: none;
  border: 0;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 8s ease;
  transform: scale(1.08);
}
.hero-slide-img.active {
  opacity: 1;
  transform: scale(1);
}
/* Carousel viewport + sliding track */
.hero-viewport {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
}
.hero-track {
  display: flex;
  transition: transform 0.85s cubic-bezier(.65,.05,.28,1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.hero-inner {
  position: relative;
  padding: 160px 0 120px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  width: 100%;
}
.hero-left { min-width: 0; }
.hero-right {
  padding-bottom: 12px;
  max-width: 380px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: white;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.hero-title span.orange { color: var(--orange); }
.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-pause {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.hero-pause:hover {
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%) scale(1.05);
}
/* Hero nav arrows — floating pill, aligned to container right edge */
.hero-arrows {
  position: absolute;
  right: max(56px, calc((100vw - 1760px) / 2 + 56px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--orange);
  border-radius: 999px;
  padding: 8px 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  width: 38px;
}
.hero-arrows button {
  width: 100%;
  height: 30px;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  border-radius: 999px;
}
.hero-arrows button svg { width: 15px; height: 15px; }
.hero-arrows button:hover { opacity: 0.75; transform: scale(0.92); }
.hero-arrows button:first-child svg,
.hero-arrows button:last-child svg { transform: none; }
.hero-dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 12px;
}
.hero-dot {
  width: 36px; height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.35);
  transition: all 0.3s;
  cursor: pointer;
  padding: 0;
}
.hero-dot.active {
  background: white;
  width: 56px;
}

/* ==========  FLOATING WHATSAPP  ========== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========  SOLUTIONS FEATURE  ========== */
.solutions-feature {
  padding: 120px 0 60px;
  background: var(--cream);
}
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  padding-left: 0;
}
.section-eyebrow::before { display: none; }
.section-eyebrow.center {
  padding-left: 0;
  padding: 0;
}
.section-eyebrow.center::before { display: none; }
.section-eyebrow.center::after { display: none; }
.feature-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-top: 48px;
}
.feature-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.feature-text h2 .accent {
  color: var(--orange);
  display: block;
}
.section-eyebrow.no-line {
  padding-left: 0;
  margin-bottom: 6px;
}
.section-eyebrow.no-line::before { display: none; }
.solutions-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.btn-ghost-orange.btn-arrow::after {
  filter: none;
  background: url('uploads/icon seta.png') no-repeat center / contain;
}

/* Solutions slider */
.sol-slider { position: relative; }
.sol-watermark {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  width: 120%;
  max-width: none;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.sol-arrows,
.sol-body { position: relative; z-index: 1; }
.sol-arrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.sol-arrows button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.sol-arrows button svg { width: 14px; height: 14px; }
.sol-arrows button:hover { background: var(--blue); transform: scale(1.06); }
.sol-body {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 48px;
  align-items: center;
}
.sol-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: solFade 0.5s ease both;
}
@keyframes solFade {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.sol-icon {
  width: 64px; height: 64px;
  margin-bottom: 24px;
}
.sol-icon img { width: 100%; height: auto; }
.sol-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--text);
}
.sol-info p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.sol-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12,18,48,0.16);
  aspect-ratio: 3 / 2;
  animation: solFadeR 0.5s ease both;
}
@keyframes solFadeR {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.sol-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sol-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.sol-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-mid);
  transition: all 0.25s;
  padding: 0;
}
.sol-dot.active { background: var(--orange); transform: scale(1.25); }
.sol-dot:hover { background: var(--orange); }
.solutions-head .title-gray {
  color: #5a564f;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
}
.feature-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 420px;
}
.feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-light);
}
.feature-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-image-tag {
  position: absolute;
  top: 24px; left: 0;
  background: var(--cream);
  padding: 14px 28px 14px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--orange);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ==========  PRODUCTS  ========== */
.products {
  position: relative;
  padding: 120px 0 140px;
  background: var(--cream);
  overflow: hidden;
}
.products-bg-text {
  position: absolute;
  top: 40px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200,195,185,0.55);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.products-bg-text span {
  color: rgba(200,195,185,0.45);
  -webkit-text-stroke: 0;
}
.products-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 64px;
}
.products-header h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  margin-top: 12px;
}
.products-header h2 .accent { color: var(--orange); }
.products-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(30, 45, 180, 0.12);
  border-color: rgba(240, 78, 35, 0.2);
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.product-icon img { width: 100%; height: auto; }
.product-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}
.product-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  align-self: flex-start;
  transition: gap 0.2s;
}
.product-link:hover { gap: 14px; }
.product-link::after {
  content: "→";
  font-size: 16px;
}

/* ==========  EXCELLENCE  ========== */
.excellence {
  padding: 100px 0 120px;
  background: var(--cream);
  position: relative;
}
.excellence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.exc-col {
  display: flex;
  flex-direction: column;
}
/* Left column */
.exc-emblem {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4px 0 12px;
}
.exc-emblem img {
  width: auto;
  max-width: 100%;
  max-height: 440px;
  display: block;
}
.exc-mid {
  justify-content: flex-start;
  padding-top: 4px;
  text-align: center;
}
.exc-mid .exc-link { align-self: center; }
.exc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.exc-mid h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
}
.exc-mid p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.exc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s, gap 0.2s;
}
.exc-link span { color: var(--blue); font-size: 17px; }
.exc-link:hover { color: var(--blue); gap: 12px; }
.exc-divider {
  height: 1px;
  background: rgba(0,0,0,0.18);
  margin: 28px 0 22px;
}
.exc-mid { justify-content: flex-start; }
.exc-mid .exc-divider { margin: 22px 0; }
.exc-left { justify-content: space-between; }
/* Stat block: number+label left, blue S icon at right */
.stat-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.stat-icon { flex: 0 0 auto; }
.stat-icon img { width: 42px; height: auto; display: block; }
.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.stat-suffix {
  display: inline;
  font-size: 44px;
  color: var(--orange);
  margin-left: 0;
  font-weight: 800;
}
.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
/* Right column — person */
.exc-right {
  align-items: center;
  justify-content: flex-end;
}
.exc-person {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: bottom;
  border-radius: 0;
  display: block;
  box-shadow: none;
}

/* ==========  VIDEO BLOCK  ========== */
.video-block {
  position: relative;
  background: var(--cream);
  padding: 40px 0 100px;
}
.vb-watermark {
  position: absolute;
  top: 50%;
  right: 4%;
  left: auto;
  transform: translateY(-50%);
  height: 92%;
  max-height: 560px;
  width: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.vb-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 40px;
  align-items: center;
}
.vb-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12,18,48,0.18);
  background: #000;
}
.vb-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vb-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,38,0.15) 0%, rgba(10,14,38,0.35) 100%);
  transition: background 0.3s ease;
}
.vb-poster:hover::after {
  background: linear-gradient(180deg, rgba(10,14,38,0.05) 0%, rgba(10,14,38,0.25) 100%);
}
.vb-play {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #e8461e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(232,70,30,0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}
.vb-poster:hover .vb-play {
  transform: scale(1.08);
  background: #cf3d18;
}
.vb-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
  color: #5a564f;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.vb-sub {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.vb-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

/* ==========  CTA BLUE  ========== */
.cta-blue {
  position: relative;
  background: var(--blue);
  background-image: url('uploads/bg5.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 90px 0 0;
  margin-top: 80px;
}
.cta-blue-top {
  position: absolute;
  top: -80px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  z-index: 0;
}
.cta-blue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 64px;
  position: relative;
  z-index: 2;
}
.cta-blue-image {
  position: relative;
  margin-top: -160px;
  align-self: end;
  display: flex;
  justify-content: center;
}
.cta-blue-image img {
  max-width: 100%;
  max-height: 620px;
  display: block;
}
.cta-blue-text {
  padding-bottom: 90px;
}
.cta-blue-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 20px;
  line-height: 1.06;
  color: #fff;
}
.cta-blue-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 380px;
}

/* ==========  CONTACT  ========== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  position: relative;
  margin-bottom: 16px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--cream);
  transition: all 0.2s;
  color: var(--text);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.form-submit {
  margin-top: 8px;
}
.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
}
.contact-info h2 .accent { color: var(--orange); }
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-channel-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-channel-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-channel-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.contact-channel a:hover { color: var(--orange); }

/* ==========  CLIENTS  ========== */
/* ==========  CLIENTS / REVIEWS  ========== */.clients {
  padding: 50px 0 110px;
  background: var(--cream);
}
.clients-header {
  text-align: center;
  margin-bottom: 56px;
}
.clients-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
  color: var(--text);
  font-weight: 800;
}
.clients-title .accent { color: var(--orange); }

.reviews-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
.reviews-summary {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews-summary-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
}
.reviews-summary-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.reviews-summary-count {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.reviews-summary-count strong { color: var(--text); }
.reviews-summary-google {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #5f6368;
  letter-spacing: -0.01em;
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.reviews-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: all 0.2s;
}
.reviews-arrow:hover:not(:disabled) { color: var(--orange); transform: scale(1.08); }
.reviews-arrow:disabled { opacity: 0.35; cursor: default; }
.reviews-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.65,.05,.28,1);
}
.review-cell {
  flex: 0 0 33.333%;
  padding: 8px 10px;
  box-sizing: border-box;
}
.review-card {
  background: white;
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-who { flex: 1; min-width: 0; }
.review-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  line-height: 1.2;
}
.review-when {
  font-size: 12.5px;
  color: var(--text-muted);
}
.review-g { flex-shrink: 0; }
.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}
.review-verified { margin-left: 6px; }
.review-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: #444;
  flex-grow: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-more {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.review-more:hover { color: var(--orange); }

/* ==========  LOGOS MARQUEE  ========== */
.logos-marquee {
  background: var(--cream);
  padding: 20px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}
.partners-divider {
  position: relative;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-divider::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0,0,0,0.5);
}
.partners-badge {
  position: relative;
  z-index: 1;
  background: #1400E6;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 34px;
  border-radius: 999px;
  border: 3px solid var(--cream);
  box-shadow: 0 2px 10px rgba(20,0,230,0.35);
}
.marquee-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
}
.marquee-track.left { animation: marqueeLeft 55s linear infinite; }
.marquee-track.right { animation: marqueeRight 55s linear infinite; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.marquee-item {
  flex: 0 0 auto;
  width: 280px;
  height: 150px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  box-shadow: none;
}
.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ==========  GALLERY  ========== */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  text-align: left;
}
.gallery-handle {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
}
.gallery-handle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1080 / 1350;
  overflow: hidden;
  border-radius: 14px;
  background: var(--blue-dark);
  cursor: pointer;
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,18,48,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.gallery-ig-icon {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-ig-icon { opacity: 1; transform: translateY(0); }
.gallery-video-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}

/* ==========  NEWS  ========== */
.news {
  padding: 110px 0;
  background: var(--cream);
}
.news-layout {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 56px;
  align-items: start;
}
.news-intro {
  position: sticky;
  top: 120px;
}
.news-intro h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  color: #4a4741;
  margin: 14px 0 20px;
}
.news-intro p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 340px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}
.news-card-image {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-card-body {
  padding: 22px 22px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.news-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
}
.news-readmore {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.news-readmore:hover { opacity: 0.7; }
.news-meta {
  margin-top: auto;
  padding: 14px 0;
  border-top: 1px solid #eee;
  font-size: 11.5px;
  color: #a9a9a9;
}

/* ==========  CTA ORANGE BAND  ========== */
.cta-orange {
  position: relative;
  background: var(--blue);
  background-image: url('uploads/bg5.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
  text-align: center;
  overflow: hidden;
}
.cta-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,20,180,0.35) 0%, rgba(36,51,181,0.15) 100%);
}
.cta-orange-content {
  position: relative;
  z-index: 2;
}
.cta-orange h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
  line-height: 1.18;
  color: #fff;
}
.cta-orange h2 .cta-accent { color: var(--orange); }
.cta-orange p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}
.cta-white-btn {
  background: #fff;
  color: var(--orange);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* ==========  MAP  ========== */
.map-section {
  width: 100%;
  line-height: 0;
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.1);
}

/* ==========  FOOTER  ========== */
.site-footer {
  background: #141824;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}
.footer-contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-contact-row .fc-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fc-icon {
  color: var(--orange);
  flex: 0 0 auto;
}
.fc-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.fc-text strong {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-bottom: 3px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 22px 0 0;
  max-width: 300px;
}
.footer-h {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 20px;
}
.footer-col ul li { position: relative; padding-left: 16px; }
.footer-col ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--orange);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: white;
  font-size: 14px;
  font-family: inherit;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  background: var(--orange);
  color: white;
  border-radius: 100px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--orange-hover); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  flex-wrap: wrap;
}

/* ==========  SCROLL REVEAL  ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========  RESPONSIVE  ========== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .excellence-grid { grid-template-columns: 1fr; gap: 48px; }
  .vb-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-blue-grid { grid-template-columns: 1fr; }
  .cta-blue-image { margin-top: 0; margin-bottom: -6px; }
  .cta-blue-text { padding-bottom: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-layout { grid-template-columns: 1fr; gap: 40px; }
  .news-intro { position: static; }
  .reviews-block { grid-template-columns: 1fr; gap: 32px; }
  .review-cell { flex: 0 0 50%; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-cta-btn { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .review-cell { flex: 0 0 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .excellence-stats { flex-direction: column; gap: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 120px 0 140px; }
  .hero-right { max-width: 100%; }
  .hero-arrows { display: none; }
  .hero-pause { display: none; }
  .hero-dots { bottom: 32px; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .logo-img { height: 44px; }
}
