
    /* ============================================================
       CSS VARIABLES & RESET
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold:        #C8A84B;
      --gold-light:  #E5C97A;
      --gold-dark:   #8B6914;
      --dark:        #0A0A08;
      --dark2:       #111109;
      --dark3:       #1A1A14;
      --surface:     #1E1E16;
      --surface2:    #252520;
      --text:        #F5F0E8;
      --text-muted:  #9A9480;
      --wood:        #8B5E3C;
      --wood-light:  #B07A52;
      --plastic:     #2A6B8A;
      --plastic-light:#3D96BB;
      --accent:      #FF6B35;
      --green:       #4CAF50;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
      cursor: default;
    }


  .bg-shape{
position:fixed;
border-radius:50%;
filter:blur(90px);
opacity:.12;
z-index:-2;
animation:floatShape 10s infinite ease-in-out;
}

.shape1{
width:300px;
height:300px;
background:#C8A84B;
top:10%;
left:-100px;
}

.shape2{
width:250px;
height:250px;
background:#0066ff;
bottom:10%;
right:-80px;
animation-delay:2s;
}

.shape3{
width:200px;
height:200px;
background:#ff9900;
top:50%;
left:50%;
animation-delay:4s;
}

@keyframes floatShape{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-30px);
}

100%{
transform:translateY(0px);
}

}    

    /* PREMIUM FOOTER */
.premium-footer{
background:#050505;
padding:80px 50px 30px;
border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
max-width:1300px;
margin:auto;
}

.footer-logo{
font-size:42px;
color:#C8A84B;
margin-bottom:20px;
}

.footer-logo span{
color:white;
}

.premium-footer h3{
margin-bottom:20px;
font-size:20px;
}

.premium-footer a,
.premium-footer p{
display:block;
margin-bottom:12px;
color:#999;
text-decoration:none;
line-height:1.8;
}

.premium-footer a:hover{
color:#C8A84B;
}

.footer-bottom{
margin-top:50px;
padding-top:20px;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
color:#666;
}

@media(max-width:800px){

.footer-grid{
grid-template-columns:1fr;
}

}    
.section-title{
animation:fadeUp 1s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(50px);
}

to{
opacity:1;
transform:translateY(0);
}

}
body{
background:
linear-gradient(
-45deg,
#050505,
#0f0f0f,
#151515,
#050505
);

background-size:400% 400%;

animation:bgMove 15s ease infinite;
}

@keyframes bgMove{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

}

    /* PREMIUM MARQUEE */

.marquee{
width:100%;
overflow:hidden;
background:#C8A84B;
padding:18px 0;
position:relative;
border-top:1px solid rgba(255,255,255,.08);
border-bottom:1px solid rgba(255,255,255,.08);
}

.marquee-track{
display:flex;
width:max-content;
animation:scrollMarquee 25s linear infinite;
}

.marquee span{
font-family:'Syne',sans-serif;
font-size:13px;
font-weight:800;
letter-spacing:3px;
text-transform:uppercase;
color:#111;
padding:0 50px;
white-space:nowrap;
}

@keyframes scrollMarquee{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
nav{
background:rgba(0,0,0,.45);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border-bottom:1px solid rgba(255,255,255,.08);
}
.hero-glow{
position:absolute;
width:500px;
height:500px;
background:#C8A84B;
filter:blur(160px);
opacity:.12;
z-index:-1;
}
    /* ============================================================
       CUSTOM CURSOR
    ============================================================ */
    .cursor {
      width: 12px; height: 12px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s ease;
      mix-blend-mode: difference;
    }
    .cursor-follower {
      width: 36px; height: 36px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.35s ease, opacity 0.3s ease;
      opacity: 0.6;
    }

    /* ============================================================
       SCROLLBAR
    ============================================================ */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--dark2); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

    /* ============================================================
       NOISE OVERLAY
    ============================================================ */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 1;
    }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 60px;
      display: flex; align-items: center; justify-content: space-between;
      background: linear-gradient(180deg, rgba(10,10,8,0.95) 0%, transparent 100%);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200,168,75,0.1);
      transition: all 0.4s;
    }
    nav.scrolled {
      padding: 14px 60px;
      background: rgba(10,10,8,0.97);
      border-bottom-color: rgba(200,168,75,0.2);
    }
    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 3px;
      color: var(--gold);
      text-decoration: none;
    }
    .logo span { color: var(--text); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      background: var(--gold);
      color: var(--dark) !important;
      padding: 10px 24px;
      border-radius: 2px;
      font-weight: 700 !important;
    }
    .nav-cta:hover { background: var(--gold-light); color: var(--dark) !important; }
    .nav-cta::after { display: none !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }

    /* ============================================================
       HERO — 3D SCENE
    ============================================================ */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse at 20% 50%, rgba(139,94,60,0.15) 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 30%, rgba(200,168,75,0.08) 0%, transparent 50%),
                  var(--dark);
    }

    /* 3D Canvas */
    #three-canvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
    }

    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      padding: 0 20px;
      animation: heroFadeIn 1.2s ease forwards;
    }
    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(200,168,75,0.1);
      border: 1px solid rgba(200,168,75,0.3);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-family: 'Syne', sans-serif;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 30px;
    }
    .hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 10vw, 140px);
      line-height: 0.9;
      letter-spacing: 4px;
      color: var(--text);
      margin-bottom: 20px;
    }
    .hero-title .line-gold { color: var(--gold); }
    .hero-title .line-outline {
      -webkit-text-stroke: 2px var(--gold);
      color: transparent;
    }
    .hero-sub {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto 48px;
      line-height: 1.7;
      font-weight: 300;
    }
    .hero-sub strong { color: var(--gold-light); font-weight: 500; }
    .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 18px 40px;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--gold-light);
      transform: translateX(-100%);
      transition: transform 0.4s;
    }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-outline {
      background: transparent;
      color: var(--text);
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 18px 40px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    .hero-stats {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  gap: 60px;
  flex-wrap: wrap;

  justify-content: center;
  align-items: center;

  width: 90%;
  max-width: 1200px;

  z-index: 2;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .hero-stats {
    bottom: 20px;
    gap: 25px;
  }
}
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .scroll-indicator {
      position: absolute; bottom: 30px; right: 60px;
      display: flex; align-items: center; gap: 10px;
      font-size: 11px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--text-muted);
      writing-mode: vertical-rl;
      z-index: 2;
    }
    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollAnim 2s infinite;
    }
    @keyframes scrollAnim { 0%{height:0;opacity:1} 100%{height:50px;opacity:0} }

    body::before{
content:'';
position:fixed;
inset:0;
background:
radial-gradient(circle at 20% 20%, rgba(200,168,75,.08), transparent 30%),
radial-gradient(circle at 80% 80%, rgba(0,140,255,.08), transparent 30%);
z-index:-2;
}

canvas{
position:fixed;
inset:0;
width:100%;
height:100%;
z-index:-1;
}

nav{
position:fixed;
top:0;
left:0;
right:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 55px;
background:rgba(0,0,0,.75);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,.08);
z-index:1000;
}

.logo{
font-family:'Bebas Neue',sans-serif;
font-size:42px;
letter-spacing:2px;
text-decoration:none;
color:#C8A84B;
}

.logo span{color:#fff;}

.nav-links{
display:flex;
gap:32px;
list-style:none;
}

.nav-links a{
color:#aaa;
text-decoration:none;
font-size:14px;
font-family:'Syne',sans-serif;
letter-spacing:2px;
text-transform:uppercase;
transition:.3s;
}

.nav-links a:hover{
color:#C8A84B;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:140px 20px 80px;
text-align:center;
}

.hero-content{
max-width:1100px;
}

.hero-badge{
display:inline-block;
padding:10px 18px;
border:1px solid rgba(200,168,75,.35);
border-radius:40px;
background:rgba(200,168,75,.08);
color:#C8A84B;
margin-bottom:28px;
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
font-family:'Syne',sans-serif;
}

.hero-title{
font-family:'Bebas Neue',sans-serif;
font-size:120px;
line-height:.88;
margin-bottom:25px;
}

.gold{color:#C8A84B;}

.hero-sub{
font-size:22px;
line-height:1.8;
color:#b5b5b5;
max-width:850px;
margin:auto auto 50px;
}

.hero-btns{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn{
display:inline-block;
padding:18px 34px;
border-radius:7px;
text-decoration:none;
font-family:'Syne',sans-serif;
font-size:14px;
letter-spacing:2px;
font-weight:700;
text-transform:uppercase;
transition:.3s;
}

.btn-primary{
background:#C8A84B;
color:black;
}

.btn-primary:hover{
transform:translateY(-5px);
background:#e5c97a;
}

.btn-outline{
border:1px solid rgba(255,255,255,.18);
color:white;
}

.btn-outline:hover{
border-color:#C8A84B;
color:#C8A84B;
}

.section{
padding:120px 50px;
}

.container{
max-width:1300px;
margin:auto;
}

.section-label{
font-size:12px;
letter-spacing:4px;
text-transform:uppercase;
color:#C8A84B;
margin-bottom:20px;
font-family:'Syne',sans-serif;
}

.section-title{
font-family:'Bebas Neue',sans-serif;
font-size:90px;
line-height:.9;
margin-bottom:20px;
}

.section-desc{
max-width:700px;
font-size:18px;
line-height:1.8;
color:#a7a7a7;
margin-bottom:60px;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:-70px;
padding:0 50px;
position:relative;
z-index:5;
}

.stat{
background:#111;
padding:40px 20px;
border-radius:14px;
border:1px solid rgba(255,255,255,.08);
text-align:center;
backdrop-filter:blur(8px);
}

.stat h2{
font-size:70px;
font-family:'Bebas Neue',sans-serif;
color:#C8A84B;
}

.stat p{
font-size:13px;
color:#999;
letter-spacing:2px;
text-transform:uppercase;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:linear-gradient(180deg,#151515,#101010);
padding:35px;
border-radius:16px;
border:1px solid rgba(255,255,255,.08);
transition:.4s;
overflow:hidden;
position:relative;
}

.card:hover{
transform:translateY(-8px);
border-color:#C8A84B;
}

.card-icon{
font-size:50px;
margin-bottom:20px;
}

.card h3{
font-size:26px;
margin-bottom:14px;
font-family:'Syne',sans-serif;
}

.card p{
line-height:1.8;
color:#a8a8a8;
}

.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.gallery img{
width:100%;
height:320px;
object-fit:cover;
border-radius:16px;
border:1px solid rgba(255,255,255,.08);
transition:.4s;
}

.gallery img:hover{
transform:scale(1.03);
}

.cta{
padding:120px 20px;
text-align:center;
}

.cta-box{
max-width:1200px;
margin:auto;
padding:90px 30px;
border-radius:24px;
background:linear-gradient(135deg,#171717,#0f0f0f);
border:1px solid rgba(255,255,255,.08);
}

.cta h2{
font-size:100px;
font-family:'Bebas Neue',sans-serif;
line-height:.9;
margin-bottom:25px;
}

.cta p{
max-width:800px;
margin:auto auto 40px;
font-size:20px;
line-height:1.8;
color:#aaa;
}

footer{
padding:40px 20px;
text-align:center;
color:#777;
border-top:1px solid rgba(255,255,255,.08);
background:#050505;
}

@media(max-width:1000px){

.hero-title{font-size:90px;}
.section-title{font-size:65px;}
.cards,.gallery,.stats{grid-template-columns:1fr 1fr;}
.cta h2{font-size:70px;}

}

@media(max-width:700px){

nav{
padding:20px;
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:16px;
}

.hero-title{font-size:58px;}
.hero-sub{font-size:17px;}
.section{padding:80px 20px;}
.section-title{font-size:48px;}
.cards,.gallery,.stats{grid-template-columns:1fr;}
.cta h2{font-size:52px;}
.stats{padding:0 20px;}
}

    /* ============================================================
       SECTION BASE
    ============================================================ */
    section { position: relative; z-index: 2; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
    .section-pad { padding: 120px 0; }

    .section-label {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }
    .section-desc {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 520px;
      font-weight: 300;
    }

    /* ============================================================
       MARQUEE TICKER
    ============================================================ */
    .ticker {
      background: var(--gold);
      padding: 14px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker-inner {
      display: inline-flex;
      animation: ticker 25s linear infinite;
    }
    .ticker-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 16px;
      letter-spacing: 3px;
      color: var(--dark);
      padding: 0 40px;
    }
    .ticker-dot { color: var(--dark2); }
    @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ============================================================
       WHY US
    ============================================================ */
    #why { background: var(--dark2); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .why-visual {
      position: relative;
      height: 500px;
    }
    .why-card-3d {
      position: absolute;
      background: var(--surface);
      border: 1px solid rgba(200,168,75,0.15);
      border-radius: 4px;
      padding: 28px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .why-card-3d:hover {
      transform: translateY(-8px) rotateX(5deg);
      box-shadow: 0 30px 60px rgba(200,168,75,0.1);
    }
    .why-card-3d:nth-child(1) { top: 0; left: 0; width: 260px; }
    .why-card-3d:nth-child(2) { top: 80px; right: 0; width: 220px; }
    .why-card-3d:nth-child(3) { bottom: 60px; left: 40px; width: 240px; }
    .why-card-3d:nth-child(4) { bottom: 0; right: 20px; width: 200px; }
    .card-icon {
      font-size: 32px; margin-bottom: 12px;
    }
    .card-title {
      font-family: 'Syne', sans-serif;
      font-size: 14px; font-weight: 700;
      letter-spacing: 1px; margin-bottom: 6px;
      color: var(--gold-light);
    }
    .card-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    .why-list { list-style: none; margin-top: 40px; }
    .why-list li {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .why-list li:last-child { border-bottom: none; }
    .why-icon {
      width: 44px; height: 44px;
      background: rgba(200,168,75,0.1);
      border: 1px solid rgba(200,168,75,0.2);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .why-text h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: 15px;
      margin-bottom: 4px;
    }
    .why-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    /* ============================================================
       PRODUCTS — 3D CARDS
    ============================================================ */
    #products { background: var(--dark3); }
    .products-intro { text-align: center; margin-bottom: 80px; }
    .products-intro .section-desc { margin: 0 auto; }

    .product-tabs {
      display: flex; justify-content: center; gap: 4px;
      margin-bottom: 60px;
    }
    .tab-btn {
      font-family: 'Syne', sans-serif;
      font-size: 12px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 12px 28px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.3s;
      border-radius: 2px;
    }
    .tab-btn.active, .tab-btn:hover {
      background: var(--gold);
      color: var(--dark);
      border-color: var(--gold);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .product-card {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 4px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      transform-style: preserve-3d;
      position: relative;
    }
    .product-card:hover {
      transform: translateY(-12px) rotateX(4deg);
      border-color: rgba(200,168,75,0.3);
      box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,168,75,0.15);
    }
    .product-img {
      width: 100%; height: 220px;
      object-fit: cover;
      display: block;
      filter: saturate(0.8) brightness(0.85);
      transition: filter 0.4s;
    }
    .product-card:hover .product-img { filter: saturate(1) brightness(1); }
    .product-body { padding: 28px; }
    .product-type {
      font-size: 10px; letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .product-name {
      font-family: 'Syne', sans-serif;
      font-size: 18px; font-weight: 800;
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
    .product-specs {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8px; margin-bottom: 24px;
    }
    .spec {
      background: rgba(255,255,255,0.04);
      border-radius: 2px; padding: 8px 12px;
    }
    .spec-key { font-size: 10px; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }
    .spec-val { font-size: 13px; font-weight: 600; margin-top: 2px; }
    .product-actions { display: flex; gap: 10px; }
    .btn-buy {
      flex: 1;
      background: var(--gold);
      color: var(--dark);
      border: none; border-radius: 2px;
      padding: 12px;
      font-family: 'Syne', sans-serif;
      font-size: 12px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      cursor: pointer; transition: background 0.3s;
      text-decoration: none; display: flex;
      align-items: center; justify-content: center;
    }
    .btn-buy:hover { background: var(--gold-light); }
    .btn-enquire {
      flex: 1;
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 2px; padding: 12px;
      font-family: 'Syne', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      cursor: pointer; transition: all 0.3s;
    }
    .btn-enquire:hover { border-color: var(--gold); color: var(--gold); }

    .badge-corner {
      position: absolute; top: 16px; right: 16px;
      background: var(--accent);
      color: #fff; font-size: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 10px; border-radius: 2px;
    }

    /* ============================================================
       BUY & SELL SECTION
    ============================================================ */
    #buysell { background: var(--dark); }
    .buysell-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
    }
    .bs-panel {
      padding: 80px 60px;
      position: relative; overflow: hidden;
    }
    .bs-panel.buy-panel {
      background: linear-gradient(135deg, var(--wood) 0%, rgba(139,94,60,0.3) 100%);
    }
    .bs-panel.sell-panel {
      background: linear-gradient(135deg, var(--plastic) 0%, rgba(42,107,138,0.3) 100%);
    }
    .bs-panel::before {
      content: '';
      position: absolute; top: -50px; right: -50px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .bs-panel::after {
      content: '';
      position: absolute; bottom: -80px; left: -40px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(0,0,0,0.15);
    }
    .bs-label {
      font-size: 11px; letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 16px;
      font-family: 'Syne', sans-serif;
    }
    .bs-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 54px; letter-spacing: 3px;
      line-height: 1;
      margin-bottom: 24px;
      position: relative; z-index: 1;
    }
    .bs-text {
      font-size: 15px; line-height: 1.8;
      color: rgba(255,255,255,0.75);
      margin-bottom: 36px;
      position: relative; z-index: 1;
      font-weight: 300;
    }
    .bs-perks { list-style: none; margin-bottom: 40px; position: relative; z-index: 1; }
    .bs-perks li {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; padding: 8px 0;
      color: rgba(255,255,255,0.85);
    }
    .bs-perks li::before {
      content: '✓';
      width: 22px; height: 22px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700;
      flex-shrink: 0;
    }
    .bs-cta {
      display: inline-block;
      background: #fff;
      color: var(--dark);
      font-family: 'Syne', sans-serif;
      font-size: 13px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 2px;
      text-decoration: none;
      transition: all 0.3s;
      position: relative; z-index: 1;
    }
    .bs-cta:hover { background: var(--gold); color: var(--dark); }

    /* ============================================================
       PROCESS SECTION
    ============================================================ */
    #process { background: var(--dark2); }
    .process-intro { text-align: center; margin-bottom: 80px; }
    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2px; position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      z-index: 0;
    }
    .step {
      background: var(--surface);
      padding: 40px 28px;
      text-align: center;
      position: relative; z-index: 1;
      transition: transform 0.3s;
    }
    .step:hover { transform: translateY(-6px); }
    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 64px; letter-spacing: 2px;
      color: rgba(200,168,75,0.12);
      line-height: 1;
      position: absolute; top: 10px; left: 50%;
      transform: translateX(-50%);
    }
    .step-icon {
      font-size: 36px; margin-bottom: 20px;
      position: relative; z-index: 1;
    }
    .step-title {
      font-family: 'Syne', sans-serif;
      font-size: 15px; font-weight: 800;
      margin-bottom: 10px;
      position: relative; z-index: 1;
    }
    .step-text {
      font-size: 13px; color: var(--text-muted);
      line-height: 1.7;
      position: relative; z-index: 1;
    }

    /* ============================================================
       GALLERY / IMAGES
    ============================================================ */
    #gallery { background: var(--dark3); }
    .gallery-intro { text-align: center; margin-bottom: 60px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto;
      gap: 12px;
    }
    .gal-item {
      overflow: hidden; border-radius: 3px;
      position: relative; cursor: pointer;
    }
    .gal-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
    .gal-item:nth-child(2) { grid-column: span 5; }
    .gal-item:nth-child(3) { grid-column: span 5; }
    .gal-item:nth-child(4) { grid-column: span 4; }
    .gal-item:nth-child(5) { grid-column: span 4; }
    .gal-item:nth-child(6) { grid-column: span 4; }

    .gal-img {
      width: 100%; height: 100%; min-height: 200px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), filter 0.4s;
      filter: saturate(0.6) brightness(0.7);
    }
    .gal-item:hover .gal-img { transform: scale(1.07); filter: saturate(1) brightness(0.9); }
    .gal-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: flex-end; padding: 20px;
    }
    .gal-item:hover .gal-overlay { opacity: 1; }
    .gal-caption {
      font-family: 'Syne', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 1px;
      color: #fff;
    }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    #testimonials { background: var(--dark); }
    .testi-intro { text-align: center; margin-bottom: 70px; }
    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .testi-card {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 36px;
      border-radius: 4px;
      position: relative;
      transition: transform 0.3s, border-color 0.3s;
    }
    .testi-card:hover {
      transform: translateY(-6px);
      border-color: rgba(200,168,75,0.2);
    }
    .testi-card::before {
      content: '"';
      font-family: Georgia, serif;
      font-size: 80px;
      color: rgba(200,168,75,0.12);
      position: absolute; top: -10px; left: 24px;
      line-height: 1;
    }
    .stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
    .testi-text {
      font-size: 14px; line-height: 1.8;
      color: var(--text-muted); margin-bottom: 24px;
      font-style: italic;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-dark), var(--wood));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px; color: #fff;
      flex-shrink: 0;
    }
    .testi-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; }
    .testi-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ============================================================
       INDUSTRIES
    ============================================================ */
    #industries { background: var(--dark2); }
    .industries-intro { text-align: center; margin-bottom: 60px; }
    .industries-row {
      display: grid; grid-template-columns: repeat(6,1fr);
      gap: 12px;
    }
    .ind-card {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 3px; padding: 28px 20px;
      text-align: center;
      transition: all 0.3s;
    }
    .ind-card:hover {
      background: rgba(200,168,75,0.08);
      border-color: rgba(200,168,75,0.2);
      transform: translateY(-4px);
    }
    .ind-icon { font-size: 32px; margin-bottom: 12px; }
    .ind-name {
      font-family: 'Syne', sans-serif;
      font-size: 12px; font-weight: 700;
      letter-spacing: 1px;
      color: var(--text-muted);
    }
    .ind-card:hover .ind-name { color: var(--gold); }

    /* ============================================================
       FAQ
    ============================================================ */
    #faq { background: var(--dark3); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .faq-list { margin-top: 0; }
    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .faq-q {
      width: 100%; background: none; border: none;
      color: var(--text);
      font-family: 'Syne', sans-serif;
      font-size: 15px; font-weight: 700;
      text-align: left; padding: 22px 0;
      cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      gap: 20px;
    }
    .faq-q span:last-child {
      font-size: 22px; color: var(--gold);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-q span:last-child { transform: rotate(45deg); }
    .faq-a {
      font-size: 14px; color: var(--text-muted);
      line-height: 1.8; padding-bottom: 20px;
      display: none;
      font-weight: 300;
    }
    .faq-item.open .faq-a { display: block; }

    /* ============================================================
       CTA BANNER
    ============================================================ */
    #cta {
      background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(139,94,60,0.15) 100%);
      border-top: 1px solid rgba(200,168,75,0.15);
      border-bottom: 1px solid rgba(200,168,75,0.15);
      text-align: center;
    }
    .cta-inner { max-width: 700px; margin: 0 auto; }
    .cta-inner .section-title { font-size: clamp(40px,6vw,80px); }
    .cta-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ============================================================
       CONTACT
    ============================================================ */
    #contact { background: var(--dark); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
    .contact-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px; letter-spacing: 2px;
      margin-bottom: 8px; color: var(--gold);
    }
    .contact-info p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 20px;
    }
    .detail-icon {
      width: 44px; height: 44px;
      background: rgba(200,168,75,0.1);
      border: 1px solid rgba(200,168,75,0.2);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .detail-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
    .detail-val { font-size: 15px; font-weight: 500; margin-top: 3px; }

    .contact-form { background: var(--surface); border-radius: 4px; padding: 48px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 11px;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--text-muted);
      font-family: 'Syne', sans-serif; font-weight: 600;
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      padding: 14px 18px;
      border-radius: 2px;
      outline: none;
      transition: border-color 0.3s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-group select option { background: var(--dark2); }
    .btn-submit {
      width: 100%;
      background: var(--gold);
      color: var(--dark);
      border: none;
      padding: 18px;
      font-family: 'Syne', sans-serif;
      font-size: 13px; font-weight: 800;
      letter-spacing: 3px; text-transform: uppercase;
      border-radius: 2px; cursor: pointer;
      transition: background 0.3s;
    }
    .btn-submit:hover { background: var(--gold-light); }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: #060604;
      border-top: 1px solid rgba(200,168,75,0.1);
      padding: 80px 0 30px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px; margin-bottom: 60px;
    }
    .footer-brand .logo { font-size: 32px; display: block; margin-bottom: 16px; }
    .footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
    .footer-col h4 {
      font-family: 'Syne', sans-serif;
      font-size: 11px; font-weight: 800;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a {
      font-size: 13px; color: var(--text-muted);
      text-decoration: none; transition: color 0.3s;
    }
    .footer-col ul a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 30px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-copy { font-size: 12px; color: var(--text-muted); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 12px; color: var(--text-muted); text-decoration: none; }
    .footer-links a:hover { color: var(--gold); }

    /* ============================================================
       FLOATING WHATSAPP
    ============================================================ */
    .whatsapp-float {
      position: fixed; bottom: 30px; right: 30px;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; z-index: 999;
      box-shadow: 0 8px 24px rgba(37,211,102,0.4);
      font-size: 26px;
      animation: bounce 3s ease-in-out infinite;
    }
    @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

    /* ============================================================
       SCROLL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .why-grid, .faq-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
      .product-grid { grid-template-columns: repeat(2,1fr); }
      .process-steps { grid-template-columns: repeat(2,1fr); }
      .industries-row { grid-template-columns: repeat(3,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      nav { padding: 18px 24px; }
      .hero-stats { gap: 30px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .product-grid { grid-template-columns: 1fr; }
      .buysell-grid { grid-template-columns: 1fr; }
      .bs-panel { padding: 60px 32px; }
      .testi-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gal-item:nth-child(1),
      .gal-item:nth-child(2),
      .gal-item:nth-child(3),
      .gal-item:nth-child(4),
      .gal-item:nth-child(5),
      .gal-item:nth-child(6) { grid-column: span 1; }
      .hero-stats { gap: 20px; bottom: 24px; }
      .stat-num { font-size: 32px; }
      .form-row { grid-template-columns: 1fr; }
      .container { padding: 0 20px; }
      .section-pad { padding: 80px 0; }
      .industries-row { grid-template-columns: repeat(2,1fr); }
      .process-steps::before { display: none; }
    }
  