
/* =====================================================
   DESIGN TOKENS
===================================================== */
:root {
  --purple: #651b45;
  --purple-lt: #8a2460;
  --accent-color: #651b45;
  --purple-pale: #F7EEF3;
  --green: #5A8A1F;
  --green-lt: #EDF3E5;
  --black: #0D0D0D;
  --gray-900: #1A1A1A;
  --gray-700: #3D3D3D;
  --gray-500: #1a1a1a;
  --gray-300: #C4C4C4;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --white: #FFFFFF;
  --border: #E8E8E8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --fh: 'Bricolage Grotesque', sans-serif;
  --fb: 'Inter', sans-serif;
  --tr: 0.22s ease;
}

/* =====================================================
   RESET
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
html { overflow-x: hidden; }
body { font-family: var(--fb); color: var(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--fb); border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: var(--fb); }

/* =====================================================
   LAYOUT
===================================================== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =====================================================
   ANIMATIONS
===================================================== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.in { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: .08s; }
.fade-up.d2 { transition-delay: .16s; }
.fade-up.d3 { transition-delay: .24s; }
.fade-up.d4 { transition-delay: .32s; }
.page-in { animation: pgIn .3s ease; }
@keyframes pgIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

/* =====================================================
   NAV
===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--tr);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 8px; }
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer;width:250px;}
.nav-logo-name img{width:250px; height:140px}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-btn {
  padding: 8px 14px; border-radius: 6px; font-size: 13.5px; font-weight: 500;
  color: var(--gray-700); transition: color var(--tr), background var(--tr);
  border: none; background: none; cursor: pointer;
}
.nav-btn:hover { color: var(--black); background: var(--gray-100); }
.nav-btn.active { color: var(--purple); background: var(--purple-pale); font-weight: 600; }
.nav-btn.active::after { display: none; }
.nav-cta {
  margin-left: 8px; padding: 9px 18px; background: var(--purple);
  color: var(--white); border-radius: 6px; font-size: 13.5px; font-weight: 600;
  font-family: var(--fb);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--purple-lt); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(101,27,69,.25); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; border: none; background: none; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--gray-700); border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    height: calc(100vh - 64px);
    z-index: 8999;
    background: #ffffff;
    flex-direction: column; align-items: stretch;
    padding: 0 0 40px; gap: 0;
    visibility: hidden; opacity: 0; pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
  }
  .nav-links.open { visibility: visible; opacity: 1; pointer-events: all; }
  .nav-links > li { display: block; width: 100%; }
  .nav-btn {
    display: block; width: 100%; text-align: left;
    padding: 16px 20px; font-size: 15px; font-weight: 500;
    color: var(--gray-700); border-radius: 0;
    border-bottom: 1px solid var(--border);
    background: none;
  }
  .nav-btn:hover { background: var(--gray-50); }
  .nav-btn.active {
    background: var(--purple-pale); color: var(--purple);
    font-weight: 600; border-radius: 0;
  }
  .nav-cta {
    display: block; width: calc(100% - 40px);
    margin: 20px 20px 0;
    text-align: center; padding: 14px 18px; font-size: 15px;
    border-radius: 8px;
  }
}

/* =====================================================
   PAGES
===================================================== */
.page { display: none; padding-top: 64px; min-height: 100vh; }
.page.active { display: block; }

/* =====================================================
   SHARED SECTION STYLES
===================================================== */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 16px; height: 1.5px; background: var(--green); border-radius: 2px; }
.section-title { font-family: var(--fh); font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 800; color: var(--black); line-height: 1.15; letter-spacing: -.3px; }
.section-title .accent { color: var(--purple); }
.section-desc { font-size: .96rem; color: var(--gray-500); max-width: 500px; line-height: 1.7; margin-top: 12px; }
.divider { width: 40px; height: 2px; background: var(--purple); margin: 16px 0; border-radius: 2px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 6px; font-size: 13.5px; font-weight: 600; font-family: var(--fb); transition: all var(--tr); cursor: pointer; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--purple); color: var(--white); border: none; }
.btn-primary:hover { background: var(--purple-lt); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(101,27,69,.22); }
.btn-outline { background: transparent; color: var(--purple); border: 1.5px solid var(--purple); }
.btn-outline:hover { background: var(--purple-pale); }
.btn-white { background: var(--white); color: var(--purple); border: none; }
.btn-white:hover { background: var(--gray-50); box-shadow: var(--shadow); }

/* =====================================================
   HERO — HOME
===================================================== */
.hero {
  min-height: calc(100vh - 64px);
  background: var(--white);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
/* Right panel background */
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 46%;
  /*background: linear-gradient(160deg, var(--purple-pale) 0%, #EAE0F5 100%);*/
  background: url('images/kembiotek_web_bg.jpg')no-repeat 50% 50%;
  background-size: cover;
  z-index: 0;
}
@media (max-width: 900px) { .hero::after { display: none; } }

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; padding: 72px 0; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 78px 0 40px; text-align: center; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 4px;
  background: var(--green-lt); border: 1px solid #C8DFB0;
  font-size: 11px; font-weight: 600; color: var(--green);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.hero-h1 { font-family: var(--fh); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 800; color: var(--black); line-height: 1.06; letter-spacing: -.6px; margin-bottom: 18px; }
.hero-h1 .line2 { color: var(--purple); display: block; }
.hero-sub { font-size: 1rem; color: var(--gray-500); line-height: 1.72; max-width: 440px; margin-bottom: 28px; }
@media (max-width: 900px) { .hero-sub { margin: 0 auto 28px; } }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-actions { justify-content: center; } }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--border); }
@media (max-width: 900px) { .hero-stats { justify-content: center; } }
.hstat-val { font-family: var(--fh); font-size: 1.9rem; font-weight: 800; color: var(--purple); line-height: 1; }
.hstat-label { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; font-weight: 500; }

/* Hero right visual */
.hero-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.hero-cards { position: relative; width: 100%; max-width: 420px; margin: 0 auto; height: 480px; }
/* Floating cards */
.hcard {
  position: absolute; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px 24px;
}
.hcard-main {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 220px; padding: 28px;
  background: var(--purple);
  color: var(--white);
  text-align: center;
  animation: floatMain 5s ease-in-out infinite;
}
@keyframes floatMain { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,-55%)} }
.hcard-main-icon { width: 52px; height: 52px; margin: 0 auto 14px; background: rgba(255,255,255,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.hcard-main-icon svg { width: 28px; height: 28px; stroke: var(--white); }
.hcard-main-title { font-family: var(--fh); font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.hcard-main-sub { font-size: .75rem; color: rgba(255,255,255,.65); line-height: 1.4; }

.hcard-tl { top: 6%; left: 2%; animation: floatTL 6s ease-in-out infinite; width: 154px; }
@keyframes floatTL { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hcard-tr { top: 4%; right: 2%; animation: floatTR 7s ease-in-out infinite 1s; width: 150px; }
@keyframes floatTR { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hcard-bl { bottom: 5%; left: 0; animation: floatBL 5.5s ease-in-out infinite .5s; width: 158px; }
@keyframes floatBL { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
.hcard-br { bottom: 7%; right: 1%; animation: floatBR 6.5s ease-in-out infinite 1.5s; width: 145px; }
@keyframes floatBR { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

.mini-icon { width: 30px; height: 30px; background: var(--purple-pale); border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.mini-icon svg { width: 16px; height: 16px; stroke: var(--purple); }
.mini-icon.green { background: var(--green-lt); }
.mini-icon.green svg { stroke: var(--green); }
.hcard-title { font-family: var(--fh); font-size: .8rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.hcard-sub { font-size: .7rem; color: var(--gray-500); line-height: 1.4; }
/* Connector dots */
.hero-dot { position: absolute; border-radius: 50%; }
.hero-dot-1 { width: 8px; height: 8px; background: var(--purple); top: 28%; left: 44%; opacity: .4; animation: dotPulse 3s ease-in-out infinite; }
.hero-dot-2 { width: 5px; height: 5px; background: var(--green); bottom: 35%; right: 40%; opacity: .5; animation: dotPulse 3s ease-in-out infinite .8s; }
@keyframes dotPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.6)} }
@media (max-width: 900px) { .hero-visual { display: block;background: url('images/kembiotek_web_bg.jpg')no-repeat 50% 50%;
  background-size: cover; } }

/* =====================================================
   MARQUEE
===================================================== */
.marquee-bar { background: var(--accent-color); padding: 12px 0; overflow: hidden; position: relative; }
.marquee-bar::before, .marquee-bar::after { content: ''; position: absolute; top:0; bottom:0; width: 60px; z-index: 2; }
.marquee-bar::before { left:0; background: linear-gradient(90deg, #601740, transparent); }
.marquee-bar::after  { right:0; background: linear-gradient(-90deg, #601740, transparent); }
.mq-track { display: flex; width: max-content; animation: mqRun 36s linear infinite; }
.mq-track:hover { animation-play-state: paused; }
@keyframes mqRun { to { transform: translateX(-50%); } }
.mq-item { display: flex; align-items: center; gap: 10px; padding: 0 24px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.6); white-space: nowrap; letter-spacing: .6px; }
.mq-sep { width: 3px; height: 3px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* =====================================================
   CATEGORIES — HOME
===================================================== */
.cat-section { background: var(--gray-50); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-cell {
  background: var(--white); padding: 28px 24px; cursor: pointer;
  transition: background var(--tr);
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
}
.cat-cell:hover { background: var(--purple-pale); }
.cat-cell-img { width: 100%; height: 130px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; background: var(--gray-100); }
.cat-cell-icon-wrap { width: 36px; height: 36px; background: var(--purple-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; transition: background var(--tr); }
.cat-cell-icon-wrap svg { width: 18px; height: 18px; stroke: var(--purple); }
.cat-cell:hover .cat-cell-icon-wrap { background: var(--purple); }
.cat-cell:hover .cat-cell-icon-wrap svg { stroke: var(--white); }
.cat-cell-title { font-family: var(--fh); font-size: .97rem; font-weight: 800; color: var(--black); margin-bottom: 5px; }
.cat-cell-desc { font-size: .8rem; color: var(--gray-500); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.cat-cell-arrow { font-size: 11px; font-weight: 600; color: var(--purple); display: flex; align-items: center; gap: 5px; transition: gap var(--tr); }
.cat-cell:hover .cat-cell-arrow { gap: 9px; }
.cat-cell-arrow svg { width: 12px; height: 12px; stroke: var(--purple); }

/* =====================================================
   INDUSTRIES WE SERVE — animated hub + chip reveal
===================================================== */
.ind-section { background: var(--white); padding: 80px 0; }
.ind-header { margin-bottom: 56px; }

/* Three-column grid: chips | hub | chips */
.ind-arena {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 40px 32px;
  align-items: center;
}
.ind-col-l { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.ind-col-r { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.ind-hub-col { display: flex; align-items: center; justify-content: center; }
.ind-hub-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ind-hub-svg { width: 280px; height: 280px; display: block; }

/* Hub ring animations */
.hub-ring-1 { transform-box: fill-box; transform-origin: 50% 50%; animation: hubSpinCW 38s linear infinite; }
.hub-ring-2 { transform-box: fill-box; transform-origin: 50% 50%; animation: hubSpinCCW 24s linear infinite; }
@keyframes hubSpinCW  { to { transform: rotate(360deg); } }
@keyframes hubSpinCCW { to { transform: rotate(-360deg); } }
.ind-hub-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--purple); opacity: 0.7; text-align: center;
}

/* Industry chips */
.ind-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0,0,0,.07); white-space: nowrap; max-width: 280px;
  opacity: 0;
  transition:
    opacity .5s ease var(--delay,0s),
    transform .65s cubic-bezier(0.34,1.56,0.64,1) var(--delay,0s),
    border-color .3s,
    box-shadow .3s,
    background .3s;
}
/* Initial hidden positions — fly in from respective sides */
.ind-chip-l { transform: translateX(-70px) scale(0.85); }
.ind-chip-r { transform: translateX(70px) scale(0.85); }
.ind-chip-b { transform: translateY(50px) scale(0.85); }

/* Visible state (added by JS on scroll) */
.ind-chip.ind-visible { opacity: 1; transform: translateX(0) scale(1); }
.ind-chip.ind-visible:hover {
  border-color: rgba(101,27,69,.35);
  box-shadow: 0 4px 18px rgba(101,27,69,.1);
  transform: translateY(-2px) !important;
}

/* Highlight flash state */
.ind-chip.ind-lit {
  border-color: var(--purple) !important;
  background: var(--purple-pale) !important;
  box-shadow: 0 6px 24px rgba(101,27,69,.18) !important;
}
.ind-chip.ind-lit .ind-name { color: var(--purple); }
.ind-chip.ind-lit .ind-icon { background: rgba(101,27,69,.18); }

/* Icon circle */
.ind-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ind-icon svg { width: 18px; height: 18px; stroke: var(--purple); }

/* Chip label */
.ind-name { font-size: .88rem; font-weight: 600; color: var(--gray-700); }

/* Bottom row (single centered chip) */
.ind-bottom { display: flex; justify-content: center; margin-top: 24px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .ind-arena { grid-template-columns: 1fr 220px 1fr; gap: 28px 20px; }
  .ind-hub-svg { width: 220px; height: 220px; }
  .ind-chip { max-width: 220px; padding: 11px 16px; gap: 10px; }
  .ind-name { font-size: .82rem; }
}
@media (max-width: 720px) {
  .ind-arena { grid-template-columns: 1fr; justify-items: center; }
  .ind-col-l, .ind-col-r { align-items: center; width: 100%; }
  .ind-hub-col { order: -1; }
  .ind-chip { max-width: 300px; width: 100%; }
  .ind-chip-l,
  .ind-chip-r,
  .ind-chip-b { transform: translateY(40px) scale(0.9); }
  .ind-hub-svg { width: 200px; height: 200px; }
  .ind-bottom { margin-top: 8px; }
}

/* =====================================================
   WHY CHOOSE US — HOME
===================================================== */
.why-section { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
.why-items { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-num { width: 32px; height: 32px; border-radius: 6px; background: var(--purple); color: var(--white); font-family: var(--fh); font-size: .8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item-title { font-family: var(--fh); font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.why-item-desc { font-size: .83rem; color: var(--gray-500); line-height: 1.6; }
.why-visual { position: relative; }
.why-vis-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px; margin-bottom: 16px;
}
.why-vis-card h3 { font-family: var(--fh); font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.why-vis-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.6; }
.why-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.why-badge { display: flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--gray-50); border: 1px solid var(--border); border-radius: 99px; font-size: 11.5px; font-weight: 600; color: var(--gray-700); }
.why-badge svg { width: 13px; height: 13px; stroke: var(--green); }
.why-logos { display: flex; align-items: center; gap: 24px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.why-logos img { max-height: 44px; width: auto; max-width: 180px; object-fit: contain; opacity: .88; transition: opacity var(--tr); }
.why-logos img:hover { opacity: 1; }
.why-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-stat-card { background: var(--purple); border-radius: var(--radius-lg); padding: 20px; text-align: center; }
.why-stat-card.light { background: var(--gray-50); border: 1px solid var(--border); }
.why-stat-val { font-family: var(--fh); font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.why-stat-card.light .why-stat-val { color: var(--purple); }
.why-stat-label { font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .7px; margin-top: 4px; font-weight: 500; }
.why-stat-card.light .why-stat-label { color: var(--gray-500); }

/* =====================================================
   CTA BAND
===================================================== */
.cta-band { background: var(--purple); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-title { font-family: var(--fh); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--white); max-width: 460px; line-height: 1.18; }
.cta-sub { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 6px; }

/* =====================================================
   PRODUCTS PAGE
===================================================== */
.prod-hero {
  background: var(--gray-900); padding: 64px 0;
  position: relative; overflow: hidden;
  background-image: linear-gradient(rgba(5,5,15,.78), rgba(5,5,15,.82)),
    url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
}
.prod-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(101,27,69,.5) 0%, transparent 70%);
}
.prod-hero-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
@media (max-width: 700px) { .prod-hero-inner { grid-template-columns: 1fr; } }
.prod-hero h1 { font-family: var(--fh); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.prod-hero p { font-size: .95rem; color: rgba(255,255,255,.5); max-width: 440px; line-height: 1.65; }
.prod-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.prod-hero-pill { padding: 5px 13px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,.6); }
.prod-count-box { background: var(--white); border-radius: var(--radius-xl); padding: 24px 28px; text-align: center; min-width: 140px; }
.prod-count-val { font-family: var(--fh); font-size: 2.4rem; font-weight: 800; color: var(--purple); line-height: 1; }
.prod-count-label { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .8px; margin-top: 5px; font-weight: 600; }

/* Products layout */
.prod-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 48px 0; }
@media (max-width: 900px) { .prod-layout { grid-template-columns: 1fr; } }

/* SIDEBAR FILTER */
.prod-sidebar { position: sticky; top: 80px; height: fit-content; }
@media (max-width: 900px) { .prod-sidebar { position: static; } }
.sidebar-title { font-family: var(--fh); font-size: .8rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.filter-list { display: flex; flex-direction: column; gap: 2px; }
@media (max-width: 900px) {
  .filter-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
}
.filter-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 13px; border-radius: var(--radius); font-size: 13px; font-weight: 500;
  color: var(--gray-700); background: none; border: none; cursor: pointer;
  transition: color var(--tr), background var(--tr); text-align: left; width: 100%;
}
@media (max-width: 900px) { .filter-btn { width: auto; border: 1px solid var(--border); } }
.filter-btn:hover { color: var(--black); background: var(--gray-100); }
.filter-btn.active { color: var(--purple); background: var(--purple-pale); font-weight: 600; }
.filter-btn-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--tr); }
.filter-btn-icon svg { width: 14px; height: 14px; stroke: var(--gray-500); transition: stroke var(--tr); }
.filter-btn.active .filter-btn-icon { background: var(--purple); }
.filter-btn.active .filter-btn-icon svg { stroke: var(--white); }
.filter-btn-label { flex: 1; }
.filter-btn-count { font-size: 11px; color: var(--gray-300); font-weight: 500; }

/* PRODUCT CONTENT */
.prod-content {}
.prod-cat-block { margin-bottom: 56px; }
.prod-cat-block:last-child { margin-bottom: 0; }
.prod-cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.prod-cat-head-left { display: flex; align-items: center; gap: 12px; }
.prod-cat-icon-box { width: 36px; height: 36px; background: var(--purple-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.prod-cat-icon-box svg { width: 18px; height: 18px; stroke: var(--purple); }
.prod-cat-name { font-family: var(--fh); font-size: 1.1rem; font-weight: 800; color: var(--black); }
.prod-cat-meta { font-size: 11.5px; color: var(--gray-500); font-weight: 500; }

/* Image placeholder grid */
.prod-img-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-bottom: 18px; }
.prod-img-tile {
  border-radius: var(--radius); cursor: pointer; overflow: hidden;
  background: var(--gray-50); border: 1.5px dashed var(--gray-300);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  display: flex; flex-direction: column; align-items: stretch; text-align: center;
}
.prod-img-tile:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-2px); }
/* Image zone */
.prod-tile-img-wrap { width: 100%; height: 140px; overflow: hidden; flex-shrink: 0; background: var(--gray-100); }
.prod-tile-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.prod-img-tile:hover .prod-tile-img-wrap img { transform: scale(1.06); }
/* Product name below image */
.prod-tile-name {
  padding: 8px 10px 10px; font-size: 11px; font-weight: 600;
  color: var(--gray-700); line-height: 1.35; flex: 1;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid var(--border);
}
.prod-img-tile:hover .prod-tile-name { color: var(--purple); background: var(--purple-pale); }
/* No-image placeholder */
.prod-img-tile.has-img { border-style: solid; border-color: var(--border); }
.ph-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 16px 12px; min-height: 150px; }
.ph-icon { width: 32px; height: 32px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ph-icon svg { width: 16px; height: 16px; stroke: var(--gray-300); }
.prod-img-tile:hover .ph-icon { border-color: var(--purple); }
.prod-img-tile:hover .ph-icon svg { stroke: var(--purple); }
.ph-label { font-size: 10.5px; font-weight: 600; color: var(--gray-500); line-height: 1.35; }
.prod-img-tile:hover .ph-label { color: var(--purple); }

.prod-item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 6px; margin-top: 12px; }
.prod-item-tag {
  padding: 8px 12px; background: var(--gray-50); border: 1px solid var(--border);
  border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--gray-700);
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.4;
}
.prod-item-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 5px; }

/* Lightbox */
.lb {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(5,0,10,.92); align-items: center; justify-content: center; padding: 24px;
}
.lb.open { display: flex; }
.lb-wrap { position: relative; max-width: 800px; width: 100%; }
.lb-img { max-height: 78vh; object-fit: contain; border-radius: 10px; margin: 0 auto; display: block; }
.lb-info { text-align: center; margin-top: 14px; }
.lb-label { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.8); }
.lb-counter { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 3px; }
.lb-close {
  position: absolute; top: -14px; right: -14px; width: 34px; height: 34px;
  background: var(--white); border-radius: 50%; font-size: 16px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; cursor: pointer; border: none;
  color: var(--gray-700); box-shadow: var(--shadow);
}
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; border: none;
  transition: background var(--tr);
}
.lb-prev { left: -54px; }
.lb-next { right: -54px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-prev svg, .lb-next svg { width: 18px; height: 18px; stroke: var(--white); }
@media (max-width: 680px) { .lb-prev { left: 0; } .lb-next { right: 0; } .lb-wrap { max-width: calc(100% - 90px); } }

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-hero {
  background: var(--gray-900); padding: 72px 0;
  background-image: linear-gradient(rgba(5,5,15,.72), rgba(5,5,15,.78)),
    url('https://images.unsplash.com/photo-1507413245164-6160d8298b31?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
}
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 768px) { .about-hero-inner { grid-template-columns: 1fr; gap: 36px; } }
.about-hero h1 { font-family: var(--fh); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.about-hero h1 em { font-style: normal; color: #A87DD4; }
.about-hero p { color: rgba(255,255,255,.5); font-size: .96rem; line-height: 1.72; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 20px; text-align: center; transition: background var(--tr); }
.about-stat:hover { background: rgba(101,27,69,.3); }
.about-stat-val { font-family: var(--fh); font-size: 1.9rem; font-weight: 800; color: #A87DD4; line-height: 1; margin-bottom: 4px; }
.about-stat-label { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .7px; font-weight: 500; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
@media (max-width: 620px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card { border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; }
.mv-tag { display: inline-block; padding: 4px 12px; background: var(--purple); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px; margin-bottom: 16px; }
.mv-tag.green { background: var(--green); }
.mv-card-title { font-family: var(--fh); font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.mv-card-text { font-size: .88rem; color: var(--gray-500); line-height: 1.75; }

.vals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 900px) { .vals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vals-grid { grid-template-columns: 1fr; } }
.val-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: border-color var(--tr), box-shadow var(--tr); }
.val-card:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.val-icon { width: 44px; height: 44px; margin: 0 auto 14px; background: var(--purple-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.val-icon svg { width: 22px; height: 22px; stroke: var(--purple); }
.val-title { font-family: var(--fh); font-size: .92rem; font-weight: 800; color: var(--black); margin-bottom: 5px; }
.val-desc { font-size: .8rem; color: var(--gray-500); line-height: 1.6; }

.certs-section { background: var(--gray-50); }
.cert-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cert-pill { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--white); border: 1px solid var(--border); border-radius: 6px; font-size: .84rem; font-weight: 600; color: var(--gray-700); transition: border-color var(--tr); }
.cert-pill:hover { border-color: var(--purple); }
.cert-pill svg { width: 15px; height: 15px; stroke: var(--green); flex-shrink: 0; }
.cert-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 36px; margin-top: 20px; padding: 20px 28px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }
.cert-logos img { max-height: 72px; width: auto; max-width: 260px; object-fit: contain; opacity: .9; transition: opacity var(--tr); }
.cert-logos img:hover { opacity: 1; }

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-hero { background: var(--gray-900); padding: 64px 0; text-align: center; }
.contact-hero h1 { font-family: var(--fh); font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.contact-hero p { color: rgba(255,255,255,.5); font-size: .95rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; padding: 64px 0; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; } }
.cinfo-title { font-family: var(--fh); font-size: 1.4rem; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.cinfo-sub { font-size: .87rem; color: var(--gray-500); margin-bottom: 28px; line-height: 1.65; }
.c-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; transition: border-color var(--tr); }
.c-item:hover { border-color: var(--purple); }
.c-item-icon { width: 36px; height: 36px; background: var(--purple-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-item-icon svg { width: 16px; height: 16px; stroke: var(--purple); }
.c-item-label { font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 2px; }
.c-item-value { font-size: .84rem; font-weight: 600; color: var(--black); line-height: 1.5; }
.c-item-value a { color: var(--purple); }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow); }
.form-card h2 { font-family: var(--fh); font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.form-card p { font-size: .84rem; color: var(--gray-500); margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .f-row { grid-template-columns: 1fr; } }
.f-group { margin-bottom: 14px; }
.f-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 6px; }
.f-group input, .f-group select, .f-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px; background: var(--gray-50); font-family: var(--fb); font-size: 13.5px; color: var(--black); outline: none; transition: border-color var(--tr), background var(--tr), box-shadow var(--tr); resize: none; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--purple); background: var(--white); box-shadow: 0 0 0 3px rgba(101,27,69,.07); }
.f-group textarea { min-height: 100px; }
.f-submit { width: 100%; padding: 13px; background: var(--purple); color: var(--white); border-radius: 8px; font-size: 14px; font-weight: 700; font-family: var(--fh); cursor: pointer; border: none; transition: all var(--tr); display: flex; align-items: center; justify-content: center; gap: 8px; }
.f-submit:hover { background: var(--purple-lt); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(101,27,69,.22); }
.f-submit svg { width: 16px; height: 16px; stroke: var(--white); }
.f-success { display: none; text-align: center; padding: 28px 0; }
.f-success-icon { width: 52px; height: 52px; background: var(--green-lt); border: 2px solid var(--green); border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.f-success-icon svg { width: 24px; height: 24px; stroke: var(--green); }
.f-success h3 { font-family: var(--fh); font-size: 1.1rem; color: var(--black); margin-bottom: 5px; }
.f-success p { font-size: .85rem; color: var(--gray-500); }

.map-section { background: var(--gray-50); padding: 64px 0; }
.map-embed { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); margin-top: 28px; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

.faq-section { padding: 64px 0; }
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .92rem; font-weight: 600; color: var(--black); cursor: pointer; background: none; border: none; font-family: var(--fb); transition: color var(--tr); }
.faq-q:hover { color: var(--purple); }
.faq-item.open .faq-q { color: var(--purple); }
.faq-chev { width: 22px; height: 22px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--tr), border-color var(--tr); }
.faq-chev svg { width: 10px; height: 10px; stroke: var(--gray-500); transition: transform .22s, stroke var(--tr); }
.faq-item.open .faq-chev { background: var(--purple); border-color: var(--purple); }
.faq-item.open .faq-chev svg { stroke: var(--white); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .34s ease; }
.faq-item.open .faq-a { max-height: 360px; }
.faq-a-inner { padding: 0 0 18px; font-size: .87rem; color: var(--gray-500); line-height: 1.72; }

/* =====================================================
   FOOTER
===================================================== */
footer { background: var(--gray-900); color: rgba(255,255,255,.5); padding: 56px 0 28px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 768px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 460px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.ft-logo-icon { width: 30px; height: 30px; background: var(--purple); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.ft-logo-icon svg { width: 15px; height: 15px; }
.ft-logo-name { font-family: var(--fh); font-weight: 800; color: var(--white); font-size: 14px; }
.ft-tagline { font-size: .82rem; line-height: 1.65; max-width: 260px; margin-bottom: 16px; }
.ft-contact { font-size: 12px; margin-bottom: 5px; }
.ft-contact a { color: inherit; }
.ft-contact a:hover { color: rgba(255,255,255,.8); }
.ft-col-title { font-family: var(--fh); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.ft-links { display: flex; flex-direction: column; gap: 7px; }
.ft-link { font-size: 12.5px; cursor: pointer; background: none; border: none; color: rgba(255,255,255,.5); font-family: var(--fb); text-align: left; transition: color var(--tr); padding: 0; }
.ft-link:hover { color: rgba(255,255,255,.9); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ft-copy { font-size: 11px; }
.ft-legal { display: flex; align-items: center; gap: 6px; font-size: 11px; }
.ft-legal-link { font-size: 11px; cursor: pointer; transition: color var(--tr); }
.ft-legal-link:hover { color: rgba(255,255,255,.8); }

/* Scroll to top */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 38px; height: 38px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(8px); transition: all var(--tr); z-index: 500; box-shadow: var(--shadow); }
.scroll-top svg { width: 16px; height: 16px; stroke: var(--gray-700); }
.scroll-top.show { opacity: 1; transform: none; }
.scroll-top:hover { background: var(--purple); border-color: var(--purple); box-shadow: var(--shadow-lg); }
.scroll-top:hover svg { stroke: var(--white); }

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 8px;
  /*background-color: #25D366;*/
  color: white;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  /*box-shadow: 2px 2px 5px rgba(0,0,0,0.3);*/
  z-index: 1000;
  text-decoration: none;
}


@media (max-width: 600px) { .section { padding: 56px 0; } }

/* =====================================================
   NAV — SEARCH BUTTON & ABOUT DROPDOWN
===================================================== */
.nav-right-actions { display: flex; align-items: center; gap: 6px; }
.nav-search-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: none; border: 1px solid var(--border);
  cursor: pointer; transition: all var(--tr); color: var(--gray-700);
}
.nav-search-btn svg { width: 17px; height: 17px; stroke: var(--gray-700); display: block; }
.nav-search-btn:hover { background: var(--purple-pale); border-color: var(--purple); }
.nav-search-btn:hover svg { stroke: var(--purple); }

/* Hide the in-list search button on desktop (use the right-actions one) */
.nav-links .nav-search-btn { display: none; }

/* Active state for nav dropdown buttons (About Us / Download when on that section) */
.nav-dl-btn.active { border-color: var(--purple); color: var(--purple); background: var(--purple-pale); }

@media (max-width: 768px) {
  .nav-right-actions { gap: 4px; }
  .nav-search-btn { display: flex; }
  .nav-links .nav-search-btn { display: none; }
}

/* =====================================================
   SEARCH OVERLAY
===================================================== */
.search-overlay {
  position: fixed; inset: 0; z-index: 19000;
  background: rgba(10,5,20,.7); backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 80px 20px 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.search-overlay.open { opacity: 1; visibility: visible; pointer-events: all; }
.search-panel {
  background: var(--white); border-radius: var(--radius-xl);
  width: 100%; max-width: 740px;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 120px);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.search-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.search-title { font-family: var(--fh); font-size: 1rem; font-weight: 800; color: var(--black); }
.search-close-btn {
  width: 32px; height: 32px; border-radius: 8px; background: var(--gray-100);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.search-close-btn svg { width: 15px; height: 15px; stroke: var(--gray-700); }
.search-close-btn:hover { background: var(--purple-pale); }
.search-close-btn:hover svg { stroke: var(--purple); }
.search-controls {
  display: flex; gap: 10px; padding: 16px 24px;
  flex-shrink: 0; flex-wrap: wrap;
}
.search-cat-select {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--fb); font-size: 13px; color: var(--black);
  background: var(--gray-50); outline: none; cursor: pointer;
  transition: border-color var(--tr);
  min-width: 180px;
}
.search-cat-select:focus { border-color: var(--purple); }
.search-input-wrap { flex: 1; position: relative; min-width: 200px; }
.search-input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--gray-300); pointer-events: none; }
.search-input {
  width: 100%; padding: 10px 14px 10px 38px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--fb); font-size: 13px; color: var(--black);
  background: var(--gray-50); outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.search-input:focus { border-color: var(--purple); background: var(--white); box-shadow: 0 0 0 3px rgba(101,27,69,.08); }
.search-go-btn {
  padding: 10px 20px; background: var(--purple); color: var(--white);
  border: none; border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background var(--tr); white-space: nowrap;
}
.search-go-btn:hover { background: var(--purple-lt); }
.search-results-wrap {
  flex: 1; overflow-y: auto; padding: 0 24px 20px;
}
.search-hint { padding: 32px 0; text-align: center; color: var(--gray-500); font-size: .88rem; }
.search-enquire-link { background: none; border: none; color: var(--purple); font-weight: 600; cursor: pointer; font-size: .88rem; }
.search-count { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray-500); padding: 8px 0 14px; }
.search-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.search-result-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.search-result-card:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-2px); }
.sr-img { height: 110px; background: var(--gray-50); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sr-img img { width: 100%; height: 100%; object-fit: cover; }
.sr-ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.sr-ph svg { width: 28px; height: 28px; stroke: var(--gray-300); }
.sr-info { padding: 10px 12px; }
.sr-name { font-size: 12px; font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 3px; }
.sr-cat { font-size: 10.5px; color: var(--purple); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; }

/* =====================================================
   BRANDS SCROLL SECTIONS
===================================================== */
.brands-section { padding: 64px 0 56px; background: var(--gray-50); overflow: hidden; }
.brands-header { text-align: center; margin-bottom: 40px; }
.brands-scroll-outer {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 4px 0;
}
.brands-track {
  display: flex; gap: 16px; width: max-content;
  animation: brandsScroll 28s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
.brands-track-reverse { animation-direction: reverse; animation-duration: 34s; }
@keyframes brandsScroll { to { transform: translateX(-50%); } }

/* Brand card — image logo style */
.brand-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  width: 180px; height: 100px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  flex-shrink: 0; overflow: hidden;
}
.brand-card:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-img {
  max-width: 130px; max-height: 52px;
  width: auto; height: auto;
  object-fit: contain; display: block;
  filter: grayscale(20%);
  transition: filter var(--tr);
}
.brand-card:hover .brand-img { filter: grayscale(0%); }
.brand-name {
  font-family: var(--fh); font-size: .72rem; font-weight: 700;
  color: var(--gray-500); text-align: center; line-height: 1.2;
  white-space: nowrap;
}

/* =====================================================
   WHAT WE OFFER — scroll-stacking cards (contained)
===================================================== */
.offer-section {
  background: #651b45;
  padding: 80px 0 100px;
  position: relative;
}

.offer-head { padding-bottom: 60px; }
.offer-head-desc {
  color: rgba(255,255,255,.55);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 560px;
  margin-top: 12px;
}

/* Stacking container */
.offer-stack { position: relative; }

/* Each card wrapper — sticky, contained width via inner .wrap */
.offer-card-wrap {
  position: sticky;
  top: calc(72px + var(--i) * 24px);
  z-index: calc(var(--i) + 1);
  transform-origin: top center;
  transition: transform .35s ease;
  will-change: transform;
  margin-bottom: 20px;
}
.offer-card-wrap:last-child { margin-bottom: 0; }

/* The card — contained, all-corner radius, image + text side by side */
.offer-card {
  background: #fff;
  border-radius: 24px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
}

/* Left — text content */
.offer-body { display: flex; flex-direction: column; }

.offer-num {
  font-family: var(--fh);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(101,27,69,.1);
  margin-bottom: 12px;
  user-select: none;
  display:none;
}

.offer-cat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
  display:none;
}

.offer-title {
  font-family: var(--fh);
  font-size: 2rem;
  color: var(--purple);
  font-weight: 800;
  /*color: var(--black);*/
  line-height: 1.1;
  margin-bottom: 16px;
}

.offer-desc {
  font-size: .94rem;
  color: var(--gray-500);
  line-height: 1.78;
  margin-bottom: 32px;
  flex: 1;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  border-bottom: 2px solid rgba(101,27,69,.25);
  padding-bottom: 3px;
  width: fit-content;
  transition: gap .2s ease, border-color .2s ease;
}
.offer-link svg { width: 14px; height: 14px; stroke: var(--green); transition: transform .2s ease; }
.offer-link:hover { gap: 12px; border-color: var(--green); }
.offer-link:hover svg { transform: translateX(4px);}

/* Right — product image */
.offer-img-wrap {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-50);
  flex-shrink: 0;
}
.offer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 16px;
  box-sizing: border-box;
  transition: transform .5s ease;
}
.offer-card:hover .offer-img-wrap img { transform: scale(1.04); }

/* ── Tablet: tighten layout ── */
@media (max-width: 1024px) {
  .offer-card {
    grid-template-columns: 1fr 280px;
    gap: 36px;
    padding: 44px 40px;
  }
  .offer-img-wrap { height: 240px; }
}

/* ── Mobile: stack vertically, no sticky ── */
@media (max-width: 768px) {
  .offer-section { padding: 60px 0 60px; }
  .offer-head { padding-bottom: 36px; }
  .offer-card-wrap {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin-bottom: 16px;
  }
  .offer-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px 36px;
    border-radius: 20px;
  }
  .offer-num { font-size: 3rem; margin-bottom: 8px; }
  .offer-title { font-size: 1.5rem; }
  .offer-img-wrap { height: 200px; order: -1; }
}
@media (max-width: 480px) {
  .offer-card { padding: 24px 20px 28px; }
  .offer-title { font-size: 1.3rem; }
  .offer-img-wrap { height: 170px; }
}

/* =====================================================
   HOME CATEGORY CARD — real images
===================================================== */
.cat-cell-img { width: 100%; height: 130px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; background: var(--gray-100); display: block; }
.cat-cell-img-ph { border: 1.5px dashed var(--gray-300); }

/* =====================================================
   OUR TEAM PAGE
===================================================== */
.team-hero {
  background: var(--gray-900); padding: 72px 0;
  background-image: linear-gradient(rgba(5,5,15,.70), rgba(5,5,15,.76)),
    url('https://images.unsplash.com/photo-1571772996211-2f02c9727629?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
}
.team-hero-inner { display: grid; grid-template-columns: 1fr; gap: 32px; }
.team-hero h1 { font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.team-hero h1 em { font-style: normal; color: #A87DD4; }
.team-hero p { color: rgba(255,255,255,.5); font-size: .96rem; line-height: 1.72; max-width: 540px; }
.team-hero .eyebrow { color: rgba(255,255,255,.4); }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow var(--tr), transform var(--tr);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.team-img-wrap { position: relative; height: 240px; overflow: hidden; flex-shrink: 0; background: var(--gray-100); }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.team-avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.team-avatar-placeholder svg { width: 100%; height: 100%; }

.team-info { padding: 28px 28px 24px; flex: 1; display: flex; flex-direction: column; }
.team-name { font-family: var(--fh); font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 3px; }
.team-role { font-size: .84rem; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: .7px; }
.team-divider { width: 36px; height: 2px; background: var(--purple); border-radius: 2px; margin: 14px 0; }
.team-bio { font-size: .87rem; color: var(--gray-500); line-height: 1.75; flex: 1; }
.team-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.team-tag { padding: 5px 12px; background: var(--purple-pale); color: var(--purple); border-radius: 99px; font-size: 11px; font-weight: 600; border: 1px solid rgba(101,27,69,.15); }

/* ── Team Profile — circular photo + floating icons ──────────────────────── */
.tm-section { padding: 80px 0 100px; background: #fdf8fb; }

.tm-profile {
  display: flex; align-items: center; gap: 72px;
  padding: 64px 0;
}
.tm-profile + .tm-sep { border: none; border-top: 1px solid #ead9e4; margin: 0; }
.tm-profile.tm-flip { flex-direction: row-reverse; }

/* Content */
.tm-content { flex: 1; min-width: 0; }
.tm-role {
  font-family: var(--fb); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
}
.tm-name {
  font-family: var(--fh);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: var(--dark);
  margin: 0 0 18px; line-height: 1.1;
}
.tm-rule {
  width: 48px; height: 3px; background: var(--purple);
  border-radius: 2px; margin-bottom: 24px;
}
.tm-bio { font-size: 15.5px; line-height: 1.82; color: #484848; margin-bottom: 28px; }
.tm-quals { display: flex; flex-direction: column; gap: 10px; }
.tm-qual {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: #555;
}
.tm-qual svg { width: 17px; height: 17px; stroke: var(--purple); flex-shrink: 0; }

/* Visual — dark circle + floating social icons */
.tm-visual {
  position: relative; flex-shrink: 0;
  width: 400px; height: 460px;
}
.tm-circle {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 380px; height: 380px;
  border-radius: 50%; background: #1c1c1c;
  overflow: hidden;
}
.tm-circle img {
  width: 100%; height: 108%;
  object-fit: cover; object-position: top center;
  margin-top: -4%; display: block;
}

/* Floating social buttons */
.tm-soc {
  position: absolute; width: 48px; height: 48px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  text-decoration: none; z-index: 2;
  box-shadow: 0 6px 22px rgba(0,0,0,.2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.tm-soc:hover { transform: scale(1.13); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.tm-soc svg { width: 20px; height: 20px; }

.tm-soc-email { background: var(--purple); top: 52px; left: 16px; }
.tm-soc-email svg { stroke: #fff; fill: none; }

.tm-soc-linkedin { background: #0A66C2; top: 50%; right: 14px; transform: translateY(-50%); }
.tm-soc-linkedin:hover { transform: translateY(-50%) scale(1.13); }
.tm-soc-linkedin svg { fill: #fff; width: 22px; height: 22px; }

/* Flip — mirror icon positions */
.tm-flip .tm-soc-email { left: auto; right: 16px; }
.tm-flip .tm-soc-linkedin { right: auto; left: 14px; }
.tm-flip .tm-soc-linkedin:hover { transform: translateY(-50%) scale(1.13); }

/* Mobile */
@media (max-width: 860px) {
  .tm-section { padding: 48px 0 64px; }
  .tm-profile, .tm-profile.tm-flip {
    flex-direction: column; gap: 40px;
    align-items: center; text-align: center;
    padding: 48px 0;
  }
  .tm-rule { margin: 0 auto 24px; }
  .tm-visual { width: 300px; height: 340px; }
  .tm-circle { width: 280px; height: 280px; }
  .tm-soc-email { top: 36px; left: 8px; }
  .tm-flip .tm-soc-email { left: auto; right: 8px; }
  .tm-soc-linkedin { right: 8px; }
  .tm-flip .tm-soc-linkedin { left: 8px; right: auto; }
  .tm-qual { justify-content: center; }
}

/* =====================================================
   PRODUCT PAGE — image tile improvements
===================================================== */
.prod-img-tile.has-img { cursor: zoom-in; }

/* =====================================================
   DOWNLOADS PAGE
===================================================== */
.dl-hero {
  background: var(--gray-900); padding: 72px 0;
  background-image: linear-gradient(rgba(5,5,15,.72), rgba(5,5,15,.78)),
    url('https://images.unsplash.com/photo-1614935151651-0bea6508db6b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
}
.dl-hero h1 { font-family: var(--fh); font-size: clamp(2rem,3.5vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.dl-hero h1 em { font-style: normal; color: #A87DD4; }
.dl-hero p { color: rgba(255,255,255,.5); font-size: .96rem; line-height: 1.72; max-width: 560px; }
.dl-hero .eyebrow { color: rgba(255,255,255,.4); }

/* Section layout */
.res-section { padding: 80px 0; }
.res-section-alt { background: var(--gray-50); }
.res-sec-header { text-align: center; margin-bottom: 52px; }

/* Card grids */
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.res-grid-wide { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

/* ── PDF cards ── */
.res-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow); transition: box-shadow var(--tr), transform var(--tr);
}
.res-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.res-pdf-icon {
  width: 72px; height: 72px; border-radius: 18px; flex-shrink: 0;
  background: rgba(101,27,69,.1);
  display: flex; align-items: center; justify-content: center;
}
.res-pdf-icon svg { width: 34px; height: 34px; stroke: var(--purple); }
.res-pdf-icon--blue { background: rgba(10,102,194,.1); }
.res-pdf-icon--blue svg { stroke: #0A66C2; }
.res-pdf-icon--orange { background: rgba(210,105,30,.1); }
.res-pdf-icon--orange svg { stroke: #D2691E; }

.res-card-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.res-card-title { font-family: var(--fh); font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.res-card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.res-card-info { flex: 1; }
.res-card-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.btn-sm { font-size: 13px !important; padding: 9px 18px !important; gap: 6px !important; }
.btn-sm svg { width: 14px; height: 14px; }

/* ── Video cards ── */
.res-vid-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow); transition: box-shadow var(--tr), transform var(--tr);
}
.res-vid-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.res-vid-thumb {
  position: relative; aspect-ratio: 16/9;
  background: #111827; overflow: hidden;
}
.res-vid-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.res-vid-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
}
.res-vid-fallback-logo { color: rgba(255,255,255,.15); }
.res-vid-fallback-logo svg { width: 64px; height: 64px; fill: currentColor; }
.res-vid-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.res-vid-card:hover .res-vid-overlay { background: rgba(0,0,0,.48); }
.res-vid-play {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(0,0,0,.35);
  transition: transform .2s;
}
.res-vid-card:hover .res-vid-play { transform: scale(1.1); }
.res-vid-play svg { width: 26px; height: 26px; fill: var(--purple); margin-left: 4px; }
.res-vid-info { padding: 20px 24px 24px; }
.res-vid-title { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.res-vid-desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 12px; }
.res-vid-cta { font-size: 13px; font-weight: 600; color: var(--purple); display: flex; align-items: center; gap: 5px; }

/* ── PDF Modal ── */
.res-pdf-modal {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.res-pdf-modal.open { opacity: 1; pointer-events: all; }
.res-pdf-panel {
  width: 100%; max-width: 1040px; height: 88vh;
  background: #fff; border-radius: 16px;
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(.96); transition: transform .25s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.res-pdf-modal.open .res-pdf-panel { transform: scale(1); }
.res-pdf-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  background: var(--gray-50); flex-shrink: 0;
}
.res-pdf-title { font-weight: 600; font-size: 15px; color: var(--dark); }
.res-pdf-close {
  width: 34px; height: 34px; border-radius: 8px; border: none;
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: background .15s, color .15s;
}
.res-pdf-close:hover { background: var(--border); color: var(--dark); }
.res-pdf-close svg { width: 18px; height: 18px; stroke: currentColor; }
.res-pdf-frame { flex: 1; width: 100%; border: none; display: none; }
.res-pdf-soon {
  flex: 1; display: none; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 48px; text-align: center;
}
.res-pdf-soon svg { width: 56px; height: 56px; stroke: var(--gray-300); margin-bottom: 4px; }
.res-pdf-soon strong { font-size: 1.15rem; color: var(--dark); }
.res-pdf-soon p { font-size: 14px; color: var(--gray-500); max-width: 340px; line-height: 1.65; }

/* ── YouTube Inline Player ── */
.res-vid-inline {
  display: flex;
  gap: 52px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}
.res-vid-inline + .res-vid-inline {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--gray-200, #e5e5e5);
}
.res-vid-inline-player {
  width: min(300px, 90vw);
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  position: relative;
  box-shadow: 0 20px 64px rgba(0,0,0,.18);
}
.res-vid-inline-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.res-vid-inline-info { max-width: 400px; }
.res-vid-inline-info .res-vid-title {
  font-family: var(--fh);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
  line-height: 1.25;
}
.res-vid-inline-info .res-vid-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  margin: 0 0 28px;
}
.res-vid-inline-yt-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--purple);
  text-decoration: none; transition: opacity .15s;
}
.res-vid-inline-yt-link:hover { opacity: .75; }
/* ── Google Drive Video Grid ── */
.res-vid-gdrive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.res-vid-gdrive-frame {
  position: relative;
  width: min(320px, 90vw);
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.14);
}
.res-vid-gdrive-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.res-vid-gdrive-info { padding: 16px 4px 0; }
.res-vid-gdrive-info .res-vid-title { font-size: 1.05rem; }
.res-vid-gdrive-info .res-vid-desc { font-size: 13.5px; margin-bottom: 0; }
@media (max-width: 640px) {
  .res-vid-gdrive-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Thumbnail player (Shorts fallback) */
.res-vid-thumb-link {
  display: block; text-decoration: none; cursor: pointer;
  position: relative;
}
.res-vid-thumb-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.res-vid-thumb-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background .2s;
}
.res-vid-thumb-link:hover .res-vid-thumb-play { background: rgba(0,0,0,.55); }
.res-vid-thumb-badge {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.72); color: #fff; font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 20px; white-space: nowrap;
  letter-spacing: .3px;
}

/* Mobile */
@media (max-width: 640px) {
  .res-grid, .res-grid-wide { grid-template-columns: 1fr; }
  .res-pdf-modal { padding: 10px; }
  .res-pdf-panel { height: 92vh; border-radius: 12px; }
  .res-vid-inline { gap: 28px; }
  .res-vid-inline-info { max-width: 100%; }
}

/* =====================================================
   RESPONSIVE FIXES
===================================================== */
@media (max-width: 768px) {
  .search-controls { flex-direction: column; }
  .search-cat-select { min-width: 100%; }
  .search-results-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-section { padding: 44px 0 40px; }
  .brand-card { width: 150px; height: 86px; }
  .brand-img { max-width: 110px; max-height: 44px; }
}
@media (max-width: 480px) {
  .search-results-grid { grid-template-columns: 1fr; }
  .team-info { padding: 20px; }
}

/* =====================================================
   CONTACT PAGE — REDESIGNED
===================================================== */
.contact-hero {
  background: var(--gray-900); padding: 80px 0 72px;
  background-image: linear-gradient(rgba(5,5,15,.72), rgba(5,5,15,.78)),
    url('https://images.unsplash.com/photo-1576086213369-97a306d36557?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
}
.contact-hero-inner { max-width: 720px; }
.contact-hero h1 { font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.contact-hero h1 em { font-style: normal; color: #A87DD4; }
.contact-hero p { color: rgba(255,255,255,.55); font-size: .97rem; line-height: 1.72; margin-bottom: 28px; }
.contact-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 99px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 500;
}
.contact-chip svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.5); flex-shrink: 0; }

/* Two-column layout */
.contact-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 32px; } }

/* Form column */
.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 480px) { .contact-form-card { padding: 24px; } }
.contact-form-head { margin-bottom: 28px; }
.contact-form-title { font-family: var(--fh); font-size: 1.4rem; font-weight: 800; color: var(--black); margin-bottom: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 6px; }
.form-req { color: var(--purple); }
.form-input {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px;
  background: var(--gray-50); font-family: var(--fb); font-size: 13.5px; color: var(--black);
  outline: none; transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
  box-sizing: border-box;
}
.form-input:focus { border-color: var(--purple); background: var(--white); box-shadow: 0 0 0 3px rgba(101,27,69,.08); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-submit-btn {
  width: 100%; padding: 13px 20px; background: var(--purple); color: var(--white);
  border: none; border-radius: 8px; font-size: 14px; font-weight: 700;
  font-family: var(--fh); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
  margin-top: 8px;
}
.form-submit-btn:hover { background: var(--purple-lt); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(101,27,69,.22); }
.form-submit-btn svg { width: 16px; height: 16px; stroke: var(--white); }

.form-success {
  padding: 36px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.form-success svg { width: 48px; height: 48px; stroke: var(--green); }
.form-success strong { font-family: var(--fh); font-size: 1.1rem; color: var(--black); display: block; margin-bottom: 6px; }
.form-success p { font-size: .87rem; color: var(--gray-500); line-height: 1.65; }
.form-success a { color: var(--purple); font-weight: 600; }

/* Info column */
.contact-info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-info-title { font-family: var(--fh); font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 24px; }
.contact-info-items { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--purple-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 17px; height: 17px; stroke: var(--purple); }
.contact-info-body { flex: 1; min-width: 0; }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 3px; }
.contact-info-value { font-size: .88rem; font-weight: 600; color: var(--gray-700); line-height: 1.55; }
.contact-info-value a { color: var(--purple); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

/* Quick links grid */
.contact-quick-links { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow); }
.contact-quick-title { font-family: var(--fh); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 14px; }
.contact-quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-quick-item {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 12.5px; font-weight: 600; color: var(--gray-700);
  text-decoration: none; transition: all var(--tr);
}
.contact-quick-item svg { width: 15px; height: 15px; stroke: var(--purple); flex-shrink: 0; }
.contact-quick-item:hover { border-color: var(--purple); background: var(--purple-pale); color: var(--purple); }

/* Map */
.contact-map-section { padding: 64px 0; background: var(--gray-50); }
.map-embed-wrap { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* FAQ — faq-arrow variant (used on contact page) */
.faq-arrow { width: 20px; height: 20px; stroke: var(--gray-400); flex-shrink: 0; transition: transform .25s ease, stroke var(--tr); }
.faq-item.open .faq-arrow { transform: rotate(180deg); stroke: var(--purple); }
.faq-a p { padding: 0 0 18px; font-size: .87rem; color: var(--gray-500); line-height: 1.72; margin: 0; }
.faq-a p a { color: var(--purple); font-weight: 600; }

/* =====================================================
   HERO TAG — mobile overflow fix
===================================================== */
@media (max-width: 440px) {
  .hero-tag {
    white-space: normal;
    font-size: 10px;
    letter-spacing: .5px;
    line-height: 1.5;
    max-width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   NAV — DOWNLOAD DROPDOWN
===================================================== */
.nav-dl-wrap { position: relative; display: flex; align-items: center; }

.nav-dl-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; margin-left: 8px;
  border: 1.5px solid var(--border); border-radius: 6px;
  background: var(--white); font-family: var(--fb);
  font-size: 13.5px; font-weight: 600; color: var(--gray-700);
  cursor: pointer; line-height: 1; white-space: nowrap;
  transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.nav-dl-btn:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-pale); }
.nav-dl-btn .dl-icon { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.nav-dl-btn .dl-chev { width: 12px; height: 12px; stroke: currentColor; flex-shrink: 0; transition: transform .2s ease; }
.nav-dl-wrap.open .dl-chev { transform: rotate(180deg); }

.nav-dl-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 10px 32px rgba(0,0,0,.13);
  min-width: 210px; overflow: hidden; z-index: 400;
  opacity: 0; transform: translateY(-8px) scale(.97);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-dl-wrap.open .nav-dl-menu {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}
.nav-dl-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--gray-700);
  text-decoration: none; border-bottom: 1px solid var(--border);
  transition: background var(--tr), color var(--tr);
}
.nav-dl-item:last-child { border-bottom: none; }
.nav-dl-item:hover { background: var(--purple-pale); color: var(--purple); }
.nav-dl-item svg { width: 15px; height: 15px; stroke: var(--purple); flex-shrink: 0; }

/* Mobile: expand inline instead of floating */
@media (max-width: 900px) {
  .nav-dl-wrap { display: block; width: 100%; position: static; }
  .nav-dl-btn {
    display: flex; width: 100%;
    margin-left: 0; margin-top: 0;
    padding: 16px 20px; font-size: 15px; font-weight: 500;
    justify-content: space-between; align-items: center;
    border: none; border-bottom: 1px solid var(--border); border-radius: 0;
    background: none; color: var(--gray-700);
  }
  .nav-dl-btn:hover { background: var(--gray-100); }
  .nav-dl-wrap.open .nav-dl-btn { border-bottom-color: transparent; }
  .nav-dl-menu {
    position: static; box-shadow: none;
    border-radius: 0; border-left: none; border-right: none;
    border-top: 1px solid var(--border);
    margin-top: 0; width: 100%;
    opacity: 1; transform: none; pointer-events: all;
    max-height: 0; overflow: hidden; padding: 0;
    transition: max-height .3s ease;
  }
  .nav-dl-wrap.open .nav-dl-menu { max-height: 200px; border-bottom: 1px solid var(--border); }
  .nav-dl-item {
    padding: 16px 28px; font-size: 14px;
    border-bottom: none;
  }
  .nav-dl-item + .nav-dl-item { border-top: 1px solid var(--border); }
}

/* =====================================================
   ENQUIRY MODAL
===================================================== */
.enq-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.enq-overlay.open { opacity: 1; pointer-events: all; }

.enq-panel {
  background: var(--white); border-radius: var(--radius-xl);
  width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto;
  padding: 36px 36px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.24);
  transform: translateY(24px) scale(.97);
  transition: transform .32s cubic-bezier(.34,1.56,.64,1);
}
.enq-overlay.open .enq-panel { transform: translateY(0) scale(1); }
@media (max-width: 520px) { .enq-panel { padding: 22px 18px 20px; } }

.enq-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  margin-bottom: 24px;
}
.enq-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--purple); margin-bottom: 4px;
}
.enq-title {
  font-family: var(--fh); font-size: 1.35rem; font-weight: 800;
  color: var(--black); margin: 0; line-height: 1.2;
}
.enq-close {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px; border: 1px solid var(--border);
  background: var(--gray-50); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), border-color var(--tr);
}
.enq-close:hover { background: var(--gray-100); border-color: var(--gray-300); }
.enq-close svg { width: 16px; height: 16px; stroke: var(--gray-500); }

.enq-form .enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .enq-form .enq-row { grid-template-columns: 1fr; } }
.enq-form .form-group { margin-bottom: 14px; }

#enqError {
  display: none; margin-bottom: 12px; padding: 10px 14px;
  border-radius: 8px; background: #fef2f2; border: 1px solid #fca5a5;
  color: #991b1b; font-size: 13px; font-weight: 500;
}

.enq-success {
  padding: 32px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.enq-success svg { width: 48px; height: 48px; stroke: var(--green); }
.enq-success strong { font-family: var(--fh); font-size: 1.1rem; color: var(--black); display: block; }
.enq-success p { font-size: .87rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* =====================================================
   ESTEEMED CUSTOMERS
===================================================== */
.cust-section { background: var(--gray-50); padding: 72px 0 64px; }
.cust-header { text-align: center; }

.cust-scroll-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.cust-track {
  display: flex; gap: 16px; width: max-content;
  animation: custScroll 32s linear infinite;
}
.cust-track:hover { animation-play-state: paused; }
@keyframes custScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.cust-card {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 12px; padding: 24px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,.05);
  min-width: 160px; max-width: 160px; flex-shrink: 0; text-align: center;
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.cust-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(101,27,69,.2); }

.cust-logo-wrap {
  width: 110px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cust-logo {
  max-width: 110px; max-height: 72px;
  width: auto; height: auto;
  object-fit: contain;
}
.cust-initials {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: .75rem; font-weight: 800;
  color: #fff; letter-spacing: .5px; flex-shrink: 0;
}
.cust-name {
  display: none;
  font-size: .78rem; font-weight: 700; color: var(--gray-700);
  line-height: 1.35; word-break: break-word;
}
.cust-sector {
  font-size: 9.5px; font-weight: 600; letter-spacing: .7px;
  text-transform: uppercase; color: var(--gray-400);
  margin-top: auto;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testi-section { background: #150a10; padding: 80px 0 56px; }
.testi-header { margin-bottom: 44px; }

.testi-outer {
  overflow-x: auto; overflow-y: hidden;
  position: relative; cursor: grab; user-select: none;
  scrollbar-width: none;
}
.testi-outer::-webkit-scrollbar { display: none; }
.testi-outer.is-dragging { cursor: grabbing; }

.testi-track {
  display: flex; gap: 24px;
  /* left padding centres first card; right gives scroll room */
  padding: 4px max(24px, calc((100vw - 500px) / 2)) 28px;
  will-change: transform;
}

.testi-card {
  flex-shrink: 0;
  width: min(480px, calc(100vw - 64px));
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl); padding: 36px 32px 30px;
  transition: border-color .3s;
}
.testi-card:hover { border-color: rgba(168,125,212,.3); }

.testi-q {
  display: block; font-family: Georgia, serif;
  font-size: 3.4rem; line-height: .8; color: var(--purple);
  opacity: .55; margin-bottom: 16px; height: 32px;
}
.testi-text {
  font-size: .9rem; color: rgba(255,255,255,.78);
  line-height: 1.82; margin: 0 0 24px; font-style: italic;
}
.testi-rule { width: 32px; height: 2px; background: var(--purple); border-radius: 2px; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: .72rem; font-weight: 800; color: #fff;
}
.testi-name { font-family: var(--fh); font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.testi-role { font-size: .78rem; color: rgba(255,255,255,.42); line-height: 1.4; }

/* Dot indicators */
.testi-dots { display: flex; justify-content: center; gap: 8px; padding-top: 8px; }
.testi-dot {
  height: 8px; width: 8px; border-radius: 4px;
  border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.18);
  transition: background .25s ease, width .28s ease;
}
.testi-dot.active { width: 28px; background: var(--purple); }

/* =====================================================
   FOOTER — LINKEDIN / SOCIAL
===================================================== */
.ft-social { display: flex; gap: 10px; margin-top: 16px; }
.ft-social-link {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}
.ft-social-link:hover { background: #0077B5; color: #fff; border-color: #0077B5; transform: translateY(-2px); }
