/* ══════════════════════════════════════════════════════════
   PRECIGENIX — style.css
   Version: 1.0.0
   Author: Fibonacci Craft (fibonaccicraft.in)
   ——————————————————————————————————————————————————————————
   TABLE OF CONTENTS
   1. Design Tokens (CSS Variables)
   2. Reset & Base
   3. Custom Cursor
   4. Progress Bar
   5. Navigation
   6. Burger Menu
   7. Mobile Drawer
   8. Hero Section
   9. Buttons
   10. Marquee
   11. Section Commons
   12. About Section
   13. Fibonacci Section
   14. Products Grid
   15. Achievements Banner
   16. Industries List
   17. Clients Grid
   18. Contact Section
   19. Footer
   20. Scroll Reveal Animations
   21. Responsive — Tablet (≤960px)
   22. Responsive — Mobile (≤600px)
   23. Accessibility — Reduced Motion
══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   1. DESIGN TOKENS
══════════════════════════════════════════════════════════ */
:root {
  /* Colors */
  --bk:     #070707;
  --dk:     #0d0d0d;
  --p1:     #111111;
  --p2:     #161616;
  --br:     #1e1e1e;
  --br2:    #2a2a2a;
  --go:     #c9a84c;
  --glt:    #e8c97a;
  --gdk:    #7a5f28;
  --gdim:   rgba(201, 168, 76, 0.12);
  --wh:     #f0ece3;
  --off:    #c0bab0;
  --gr:     #5a5a5a;
  --gr2:    #888888;

  /* Layout */
  --nh: 70px; /* nav height */

  /* Easings */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeIn: cubic-bezier(0.55, 0, 1, 0.45);
}

/* ══════════════════════════════════════════════════════════
   2. RESET & BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  background: var(--bk);
  color: var(--wh);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul   { list-style: none; }
input, textarea, button { -webkit-appearance: none; }

/* ══════════════════════════════════════════════════════════
   3. CUSTOM CURSOR (pointer devices only)
══════════════════════════════════════════════════════════ */
@media (pointer: fine) {
  body { cursor: none; }
  .cur, .cur-ring {
    position: fixed; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
  }
  .cur {
    width: 8px; height: 8px;
    background: var(--go); border-radius: 50%;
    transition: width .15s, height .15s;
    mix-blend-mode: difference;
    z-index: 9999;
  }
  .cur-ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(201,168,76,.4);
    border-radius: 50%; z-index: 9998;
    transition: width .2s, height .2s;
  }
  .cur.big     { width: 14px; height: 14px; }
  .cur-ring.big{ width: 50px; height: 50px; }
}

/* ══════════════════════════════════════════════════════════
   4. PROGRESS BAR
══════════════════════════════════════════════════════════ */
#pgbar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gdk), var(--go), var(--glt));
  z-index: 10000; width: 0%;
  box-shadow: 0 0 8px var(--go);
  transition: width .08s linear;
}

/* ══════════════════════════════════════════════════════════
   5. NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 60px);
  height: var(--nh);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.nav.stuck {
  background: rgba(7,7,7,.96);
  border-bottom-color: var(--br);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: 4px; color: var(--wh); flex-shrink: 0;
}
.nav-logo span { color: var(--go); }
/* Real Precigenix SVG logo — aspect ratio ~1.6:1 */
.nav-logo svg {
  width: clamp(36px, 5vw, 52px);
  height: auto;
  transition: transform .5s var(--ease), filter .3s;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0));
}
.nav-logo:hover svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
}

/* Desktop links */
.nav-links {
  display: flex; gap: clamp(18px, 2.5vw, 40px); align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gr); position: relative; padding-bottom: 3px;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--go);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--wh); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Quote CTA */
.nav-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--go); border: 1px solid var(--gdk);
  padding: 8px 20px; flex-shrink: 0;
  transition: all .3s;
}
.nav-quote:hover { background: var(--go); color: var(--bk); }

/* ══════════════════════════════════════════════════════════
   6. BURGER BUTTON
══════════════════════════════════════════════════════════ */
.burger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; width: 42px; height: 42px;
  border: 1px solid var(--br2); padding: 10px;
  position: relative; z-index: 901;
  transition: border-color .3s;
}
.burger:hover { border-color: var(--go); }
.burger span {
  display: block; height: 1.5px; background: var(--wh);
  transition: transform .35s var(--ease), opacity .25s, width .3s;
  transform-origin: left center;
}
.burger span:last-child { width: 65%; }
.burger.open span:first-child { transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:last-child   { transform: rotate(-45deg); width: 100%; }

/* ══════════════════════════════════════════════════════════
   7. MOBILE DRAWER
══════════════════════════════════════════════════════════ */
.mob {
  position: fixed; inset: 0; z-index: 850;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nh) + 20px) clamp(24px, 6vw, 48px) 48px;
  background: var(--bk);
  transform: translateX(105%);
  transition: transform .5s var(--easeIn);
  overflow-y: auto;
}
.mob.open { transform: translateX(0); }

.mob-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 10vw, 68px);
  letter-spacing: 1px; color: var(--gr);
  line-height: 1.1; border-bottom: 1px solid var(--br);
  padding: clamp(12px, 2vh, 18px) 0;
  display: flex; justify-content: space-between; align-items: center;
  transition: color .25s, padding-left .25s;
}
.mob-link:hover { color: var(--go); padding-left: 10px; }
.mob-link .arr  { font-size: 24px; transition: transform .25s; flex-shrink: 0; }
.mob-link:hover .arr { transform: translateX(8px); }

.mob-foot {
  margin-top: 40px; display: flex; flex-direction: column; gap: 14px;
}
.mob-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  background: var(--go); color: var(--bk);
  padding: 16px 28px; font-weight: 700;
  text-align: center; display: block;
  transition: background .3s;
}
.mob-cta:hover { background: var(--glt); }
.mob-info {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; color: var(--gr);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   8. HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.08);
  animation: hzoom 18s var(--ease) infinite alternate;
}
/* hero-bg image: assets/images/hero/hero-bg.jpg */
@keyframes hzoom {
  from { transform: scale(1.08) translate(0, 0); }
  to   { transform: scale(1.13) translate(-1.5%, -.5%); }
}
.hero-vig {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,.55) 0%, transparent 28%),
    linear-gradient(0deg,   rgba(7,7,7,.98) 0%, rgba(7,7,7,.55) 38%, transparent 65%),
    linear-gradient(100deg, rgba(7,7,7,.88) 0%, rgba(7,7,7,.1) 65%);
}
.hero-gridlines {
  position: absolute; inset: 0; opacity: .035;
  background-image:
    linear-gradient(var(--go) 1px, transparent 1px),
    linear-gradient(90deg, var(--go) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding: var(--nh) clamp(18px,5vw,60px) clamp(50px,8vh,100px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 0 40px;
}
.hero-left  { grid-column: 1; }
.hero-right {
  grid-column: 2;
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: flex-end;
  gap: 26px; padding-bottom: 4px;
}

.h-eye {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--go);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(16px, 2vh, 28px);
  opacity: 0; animation: fuUp .7s .2s forwards;
}
.h-eye::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--go);
}
.h-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 14vw, 200px);
  line-height: .84; letter-spacing: -1px; color: var(--wh);
  opacity: 0; animation: fuUp .8s .4s forwards;
}
.h-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--go);
  display: block;
  letter-spacing: 2px;
}
.h-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.85; color: var(--gr2);
  max-width: 460px;
  margin-top: clamp(16px, 2.5vh, 26px);
  opacity: 0; animation: fuUp .8s .6s forwards;
}
.h-acts {
  display: flex; gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(26px, 3.5vh, 48px);
  align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fuUp .8s .8s forwards;
}

/* Hero Stats */
.hstat {
  text-align: right;
  opacity: 0;
  animation: fuLeft .7s calc(.9s + var(--d, 0s)) forwards;
}
.hstat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--go); line-height: 1;
}
.hstat-l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(8px, 1vw, 10px);
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gr); margin-top: 3px;
}
.hdiv {
  width: 1px; height: 28px;
  background: var(--br2);
  opacity: 0; animation: fuLeft .5s 1.1s forwards;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  left: clamp(18px, 5vw, 60px);
  bottom: clamp(16px, 3vh, 34px);
  z-index: 3;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gr);
  writing-mode: vertical-lr;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fuUp .7s 1.3s forwards;
}
.hero-scroll::before {
  content: ''; display: block;
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--go), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

/* ══════════════════════════════════════════════════════════
   9. BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(10px, 1.3vw, 12px);
  letter-spacing: 3px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .3s; font-weight: 600;
}
.btn-go {
  background: var(--go); color: var(--bk);
  padding: clamp(12px,1.5vw,16px) clamp(18px,2.5vw,34px);
}
.btn-go:hover { background: var(--glt); transform: translateY(-2px); }
.btn-gh {
  color: var(--off);
  border-bottom: 1px solid var(--br2);
  padding-bottom: 2px;
}
.btn-gh:hover { color: var(--go); border-color: var(--go); }
.btn-gh::after { content: '→'; color: var(--go); margin-left: 6px; }

/* ══════════════════════════════════════════════════════════
   10. MARQUEE
══════════════════════════════════════════════════════════ */
.mq {
  background: var(--go); overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(0,0,0,.2);
  padding: 13px 0;
}
.mq-track {
  display: flex; width: max-content;
  animation: scrollX 28s linear infinite;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mi {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(9px, 1.2vw, 12px);
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--bk); font-weight: 700;
  padding: 0 clamp(18px, 3vw, 40px);
  white-space: nowrap;
  display: flex; align-items: center; gap: clamp(18px, 3vw, 40px);
}
.mi::after { content: '◆'; font-size: 5px; }

/* ══════════════════════════════════════════════════════════
   11. SECTION COMMONS
══════════════════════════════════════════════════════════ */
.sec { padding: clamp(64px, 9vh, 130px) clamp(18px, 5vw, 60px); }
.sec-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--go);
  margin-bottom: clamp(12px, 1.8vh, 20px);
  display: flex; align-items: center; gap: 14px;
}
.sec-tag::before {
  content: ''; display: block;
  width: 26px; height: 1px; background: var(--go);
}
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 110px);
  line-height: .88; letter-spacing: .5px; color: var(--wh);
}
.sec-title em   { color: var(--go); font-style: normal; display: block; }
.sec-title .strk {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--br2);
  display: block;
}

/* ══════════════════════════════════════════════════════════
   12. ABOUT
══════════════════════════════════════════════════════════ */
.about { background: var(--dk); position: relative; overflow: hidden; }
.about::after {
  content: ''; position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 65%);
  pointer-events: none;
}
.ag {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 100px); align-items: center;
  margin-top: clamp(36px, 5vh, 70px);
}
.aimg-wrap { position: relative; }
.aimg {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(.85);
  transition: filter .6s;
}
.aimg-wrap:hover .aimg { filter: brightness(.95); }
.aframe {
  position: absolute; bottom: -14px; right: -14px;
  width: calc(100% - 28px); height: calc(100% - 28px);
  border: 1px solid var(--gdk); pointer-events: none; z-index: -1;
}
.abadge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--go); color: var(--bk);
  width: clamp(80px, 9vw, 108px); height: clamp(80px, 9vw, 108px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; z-index: 2;
}
.abadge-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px); line-height: 1;
}
.abadge-l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
}
.abody p {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.9; color: var(--gr2); margin-bottom: 18px;
}
.abody strong { color: var(--wh); font-weight: 400; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(16px, 2.5vh, 28px); }
.pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid var(--br2); color: var(--gr);
  padding: 7px 13px; transition: all .3s;
}
.pill:hover { border-color: var(--go); color: var(--go); }

/* ══════════════════════════════════════════════════════════
   13. FIBONACCI
══════════════════════════════════════════════════════════ */
.fib { background: var(--bk); position: relative; overflow: hidden; }
.fib-wm {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(160px, 26vw, 360px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.055);
  line-height: 1; pointer-events: none;
  letter-spacing: -8px; white-space: nowrap;
}
.fib-grid {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(36px, 5vw, 80px); align-items: center;
  position: relative; z-index: 1;
}
.fib-vis {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fib-rings {
  position: relative;
  width: clamp(180px, 22vw, 280px);
  height: clamp(180px, 22vw, 280px);
}
.fib-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--gdk);
  animation: spin 20s linear infinite;
}
.fib-ring:nth-child(2) {
  inset: 18px; border-color: rgba(201,168,76,.5);
  animation-duration: 14s; animation-direction: reverse;
  border-style: dashed;
}
.fib-ring:nth-child(3) {
  inset: 36px; border-color: rgba(201,168,76,.28);
  animation-duration: 9s;
}
.fib-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 68%);
  border-radius: 50%;
  animation: breathe 4s ease-in-out infinite;
}
.fib-phi {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px); color: var(--go);
  text-shadow: 0 0 40px rgba(201,168,76,.4);
  animation: spin 20s linear infinite reverse;
}
@keyframes spin    { from { transform: rotate(0); }   to { transform: rotate(360deg); } }
@keyframes breathe { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.fibc p { font-size: clamp(13px,1.5vw,15px); line-height: 1.9; color: var(--gr2); margin-bottom: 16px; }
.fib-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(18px, 2.5vh, 30px); }
.fib-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  background: var(--gdim); border: 1px solid var(--gdk);
  color: var(--go); padding: 8px 15px;
  transition: background .3s;
}
.fib-chip:hover { background: rgba(201,168,76,.2); }

/* ══════════════════════════════════════════════════════════
   14. PRODUCTS GRID
══════════════════════════════════════════════════════════ */
.products { background: var(--p1); }
.phd {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 16px;
  margin-bottom: clamp(26px, 4vh, 50px);
}
.pcnt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 11vw, 140px);
  color: transparent; -webkit-text-stroke: 1px var(--br2); line-height: 1;
}
.pgrid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.pcard {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--p2); cursor: pointer;
}
.pcard.wide { grid-column: span 2; aspect-ratio: auto; min-height: 360px; }
.pcard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .7s;
  filter: grayscale(20%) brightness(.65);
}
.pcard:hover img { transform: scale(1.07); filter: grayscale(0%) brightness(.75); }
.pshade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,.97) 0%, rgba(7,7,7,.15) 55%, transparent 100%);
}
.pbody {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(16px, 2.5vw, 28px);
  transform: translateY(12px);
  transition: transform .4s var(--ease);
}
.pcard:hover .pbody { transform: translateY(0); }
.pnum {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; color: var(--go); margin-bottom: 6px;
}
.pname {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(17px, 2.2vw, 23px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; line-height: 1.15; color: var(--wh);
}
.pdesc {
  font-size: 12px; color: var(--gr2); margin-top: 7px; line-height: 1.65;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s .06s, transform .4s .06s;
}
.pcard:hover .pdesc { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   15. ACHIEVEMENTS
══════════════════════════════════════════════════════════ */
.ach {
  background: var(--go); position: relative; overflow: hidden;
  padding: clamp(56px, 9vh, 120px) clamp(18px, 5vw, 60px);
}
.ach-bgimg {
  position: absolute; inset: 0;
  background: url('../images/products/cnc-machine.jpg') center/cover no-repeat;
  opacity: .08; mix-blend-mode: multiply;
}
.achg {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px); align-items: start;
  position: relative; z-index: 1;
}
.ach-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 96px); line-height: .9; color: var(--bk);
}
.ach-sup {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(0,0,0,.5); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.ach-sup::before { content: ''; display: block; width: 22px; height: 1px; background: rgba(0,0,0,.4); }
.achb p { color: rgba(0,0,0,.65); font-size: clamp(13px,1.5vw,15px); line-height: 1.9; margin-bottom: 14px; }
.achb strong { color: var(--bk); font-weight: 600; }
.ach-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.ach-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  background: rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.2);
  color: var(--bk); padding: 7px 13px;
}
.btn-dk {
  background: var(--bk); color: var(--go);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  padding: clamp(12px,1.5vw,16px) clamp(18px,2.5vw,32px);
  display: inline-block; margin-top: 26px; font-weight: 700;
  transition: all .3s;
}
.btn-dk:hover { background: rgba(0,0,0,.85); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   16. INDUSTRIES
══════════════════════════════════════════════════════════ */
.industries { background: var(--dk); }
.il { margin-top: clamp(28px, 4vh, 60px); }
.irow {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: clamp(16px, 2.2vh, 26px) 0;
  border-bottom: 1px solid var(--br);
  position: relative; overflow: hidden;
  transition: padding-left .3s var(--ease);
  cursor: default;
}
.irow::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--go);
  transform: scaleY(0); transition: transform .35s var(--ease);
  transform-origin: bottom;
}
.irow:hover::before { transform: scaleY(1); }
.irow:hover { padding-left: 18px; }
.iname {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.8vw, 36px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--wh); transition: color .25s; flex: 1;
}
.irow:hover .iname { color: var(--go); }
.itag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; color: var(--gr);
  text-transform: uppercase; text-align: right; flex-shrink: 0;
}
.iarr { color: var(--go); font-size: 18px; flex-shrink: 0; transition: transform .3s; }
.irow:hover .iarr { transform: translateX(8px); }

/* ══════════════════════════════════════════════════════════
   17. CLIENTS GRID
══════════════════════════════════════════════════════════ */
.clients { background: var(--bk); }
.clients-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px); align-items: end;
  margin-bottom: clamp(36px, 5vh, 70px);
}
.cl-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--gr2); line-height: 1.8; max-width: 400px; margin-top: 16px;
}
.cl-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  color: transparent; -webkit-text-stroke: 1px var(--br2);
  line-height: 1; text-align: right;
}
.cgrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--br); border-left: 1px solid var(--br);
}
.ccell {
  background: var(--p1);
  border-right: 1px solid var(--br); border-bottom: 1px solid var(--br);
  padding: clamp(18px, 3vw, 36px) clamp(12px, 2vw, 24px);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.ccell:hover { background: var(--p2); }
.cname {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(10px, 1.3vw, 13px); letter-spacing: 2px;
  text-transform: uppercase; color: var(--gr);
  text-align: center; transition: color .3s;
}
.ccell:hover .cname { color: var(--go); }

/* ══════════════════════════════════════════════════════════
   18. CONTACT
══════════════════════════════════════════════════════════ */
.contact { background: var(--p1); }
.ctg {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 100px);
  margin-top: clamp(36px, 5vh, 70px); align-items: start;
}
.ci-p {
  font-size: clamp(13px, 1.5vw, 15px); line-height: 1.9;
  color: var(--gr2); margin-bottom: clamp(22px, 3vh, 38px);
}
.cdets { display: flex; flex-direction: column; gap: 15px; }
.cit {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 15px; border-bottom: 1px solid var(--br);
}
.cion {
  width: 33px; height: 33px; flex-shrink: 0;
  background: var(--gdim); border: 1px solid var(--gdk);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.cit-l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gr); margin-bottom: 4px;
}
.cit-v { font-size: clamp(12px, 1.4vw, 14px); color: var(--wh); }

/* Form */
.cform { display: flex; flex-direction: column; gap: 15px; }
.frow  { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.fg    { display: flex; flex-direction: column; gap: 7px; }
.flbl  {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gr);
}
.finp {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--br2);
  padding: 13px 14px; color: var(--wh);
  font-family: 'Barlow', sans-serif; font-size: 13px;
  outline: none; transition: border-color .3s; width: 100%;
}
.finp:focus { border-color: var(--go); }
.finp::placeholder { color: var(--gr); font-size: 12px; }
textarea.finp { height: 108px; resize: none; }
.fsub {
  background: var(--go); color: var(--bk);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  padding: 15px 30px; font-weight: 700; align-self: flex-start;
  transition: all .3s; cursor: pointer; border: none;
}
.fsub:hover { background: var(--glt); transform: translateY(-2px); }

/* Form status messages */
.form-msg {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 16px; margin-top: 8px; display: none;
}
.form-msg.success { background: rgba(42,125,79,.15); border: 1px solid rgba(42,125,79,.4); color: #2a7d4f; display: block; }
.form-msg.error   { background: rgba(192,57,43,.15);  border: 1px solid rgba(192,57,43,.4);  color: #c0392b; display: block; }

/* ══════════════════════════════════════════════════════════
   19. FOOTER
══════════════════════════════════════════════════════════ */
footer { background: var(--bk); border-top: 1px solid var(--br); }
.ft {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(46px, 7vh, 80px) clamp(18px, 5vw, 60px);
}
.fbrand { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.fbn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 3px; color: var(--wh);
}
.fbn span { color: var(--go); }
.fdesc { font-size: 13px; color: var(--gr); line-height: 1.8; max-width: 290px; margin-bottom: 24px; }
.fsocs { display: flex; gap: 9px; }
.fsoc {
  width: 33px; height: 33px; border: 1px solid var(--br2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; color: var(--gr);
  transition: all .3s;
}
.fsoc:hover { border-color: var(--go); color: var(--go); }
.fct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--go); margin-bottom: 20px;
}
.fls { display: flex; flex-direction: column; gap: 11px; }
.fls a { font-size: 13px; color: var(--gr); transition: color .25s; }
.fls a:hover { color: var(--wh); }
.fb {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: clamp(18px, 2.5vh, 26px) clamp(18px, 5vw, 60px);
  border-top: 1px solid var(--br);
}
.fcpy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gr);
}
.fcpy a { color: var(--go); }
.fcerts { display: flex; gap: 9px; flex-wrap: wrap; }
.fcert {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--br); color: var(--gr); padding: 5px 11px;
}

/* ══════════════════════════════════════════════════════════
   20. SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════ */
.rv   { opacity: 0; transform: translateY(34px);  transition: opacity .75s var(--ease), transform .75s var(--ease); }
.rv-l { opacity: 0; transform: translateX(-34px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.rv-r { opacity: 0; transform: translateX(34px);  transition: opacity .75s var(--ease), transform .75s var(--ease); }
.vis  { opacity: 1 !important; transform: none !important; }

@keyframes fuUp  { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
@keyframes fuLeft{ from { opacity:0; transform:translateX(22px); } to { opacity:1; transform:translateX(0); } }

/* ══════════════════════════════════════════════════════════
   21. RESPONSIVE — TABLET (≤ 960px)
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .burger      { display: flex; }
  .nav-links,
  .nav-quote   { display: none; }

  .hero-inner  { grid-template-columns: 1fr; }
  .hero-left,
  .hero-right  { grid-column: 1; }
  .hero-right  {
    flex-direction: row; justify-content: flex-start;
    align-items: center; gap: 18px; margin-top: 30px;
  }
  .hdiv        { width: 28px; height: 1px; }
  .hstat       { text-align: left; }

  .ag, .fib-grid, .ctg, .achg, .clients-top { grid-template-columns: 1fr; gap: 32px; }
  .fib-wm      { display: none; }
  .fib-vis     { margin-bottom: 6px; }
  .aframe      { display: none; }
  .abadge      { bottom: -13px; right: -10px; }
  .cl-num      { text-align: left; }
  .itag        { display: none; }

  .pgrid       { grid-template-columns: 1fr 1fr; }
  .pcard.wide  { grid-column: span 2; }
  .cgrid       { grid-template-columns: repeat(2, 1fr); }

  .ft          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft > div:first-child { grid-column: span 2; }
  .fb          { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   22. RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .pgrid       { grid-template-columns: 1fr; }
  .pcard.wide  { grid-column: span 1; min-height: 260px; }
  .pcard       { aspect-ratio: 4/3; }
  .cgrid       { grid-template-columns: repeat(2, 1fr); }
  .ft          { grid-template-columns: 1fr; }
  .ft > div:first-child { grid-column: span 1; }
  .frow        { grid-template-columns: 1fr; }
  .h-acts      { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-scroll { display: none; }
  .h-title     { font-size: clamp(58px, 18vw, 90px); }
}

/* ══════════════════════════════════════════════════════════
   23. ACCESSIBILITY — REDUCED MOTION
══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--br);
  padding: clamp(20px,3vh,32px) 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--br); }
.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--wh);
  margin-bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px;
  transition: color .25s;
}
.faq-q::after {
  content: '+';
  color: var(--go); font-size: 22px; font-weight: 300;
  flex-shrink: 0; transition: transform .3s;
  font-family: 'Barlow', sans-serif;
}
.faq-item.open .faq-q { color: var(--go); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  font-size: clamp(13px,1.5vw,15px);
  line-height: 1.85; color: var(--gr2);
  padding-top: 16px;
}
.faq-a strong { color: var(--wh); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   PRODUCT DETAIL GRID — responsive
══════════════════════════════════════════════════════════ */
.prod-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 700px) {
  .prod-detail-grid { grid-template-columns: 1fr; gap: 28px; }
}
