:root {
  --black: #070707;
  --charcoal: #141414;
  --dark: #1f2022;
  --gold: #d0a03a;
  --gold-2: #f3c85f;
  --silver: #c8cbd0;
  --muted: #6d7077;
  --white: #ffffff;
  --paper: #f7f7f5;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Oswald', sans-serif;
  background: var(--paper);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.65
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.wrap {
  width: min(1500px, 82%);
  margin-inline: auto
}

h1,
h2,
h3,
.nav-menu a,
.quote-btn,
.btn,
.small-btn {
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: .035em
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  margin-bottom: 16px
}

.eyebrow.dark {
  color: var(--gold)
}

.eyebrow::after {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
  opacity: .75
}

/* TOPBAR + HEADER */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  color: #d9d9d9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.918);
  font-size: .78rem;
  background: rgba(247, 246, 246, 0.42);
  backdrop-filter: blur(8px)
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0
}

.topbar-inner div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.topbar span {
  white-space: nowrap
}

.topbar span::first-letter {
  color: var(--gold)
}
/*=====================================
HEADER
======================================*/

.site-header{
    position:absolute;
    top:38px;
    left:0;
    width:100%;
    z-index:60;

    /* background:rgba(10,10,10,.35); */

    /* backdrop-filter:blur(12px); */
    -webkit-backdrop-filter:blur(14px);

    /* border-bottom:1px solid rgba(255,255,255,.08); */

    transition:
        background .35s ease,
        box-shadow .35s ease,
        top .35s ease;
}

/*==============================
STICKY HEADER
==============================*/

.site-header.scrolled{

    position:fixed;

    top:0;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    box-shadow:0 10px 35px rgba(0,0,0,.12);

    border-bottom:1px solid rgba(0,0,0,.05);
}


/*==============================
NAV CONTAINER
==============================*/

.nav-wrap{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:105px;

    gap:22px;
}


/*==============================
LOGO
==============================*/

.brand{

    display:flex;

    align-items:center;
}

.brand img{

    height:95px;

    width:95px;

    transition:.35s;

    filter:
    drop-shadow(0 5px 15px rgba(0,0,0,.30));
}

.site-header.scrolled .brand img{

    filter:none;
}


/*==============================
NAVIGATION
==============================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:36px;
}

.nav-menu a{

    position:relative;

    padding:34px 0;

    font-size:1rem;

    font-weight:700;

    letter-spacing:.04em;

    text-transform:uppercase;

    color:#FFD45C;

    text-shadow:
        0 1px 3px rgba(0,0,0,.55);

    transition:
        color .35s,
        transform .35s;
}

/* Underline */

.nav-menu a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:26px;

    width:0;

    height:3px;

    border-radius:50px;

    transform:translateX(-50%);

    background:
    linear-gradient(
    90deg,
    var(--gold),
    var(--gold-2));

    transition:.35s;
}

/* Hover */

.nav-menu a:hover{

    color:#FFE17D;

    transform:translateY(-2px);
}

.nav-menu a:hover::after{

    width:100%;
}

/* Active */

.nav-menu a.active{

    color:#FFE17D;
}

.nav-menu a.active::after{

    width:100%;
}


/*==============================
STICKY NAVIGATION
==============================*/

.site-header.scrolled .nav-menu a{

    color:#d0a03a;

    text-shadow:none;
}

.site-header.scrolled .nav-menu a:hover{

    color:var(--gold);

    transform:translateY(-2px);
}

.site-header.scrolled .nav-menu a.active{

    color:var(--gold);
}


/*==============================
QUOTE BUTTON
==============================*/

.quote-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 28px;

    background:
    linear-gradient(
    135deg,
    var(--gold-2),
    var(--gold));

    color:#111;

    font-size:.95rem;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.04em;

    border-radius:5px;

    box-shadow:
    0 10px 25px rgba(208,160,58,.28);

    transition:.35s;
}

.quote-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 18px 35px rgba(208,160,58,.35);
}


/*==============================
MENU TOGGLE
==============================*/

.menu-toggle{

    display:none;

    background:none;

    border:none;

    cursor:pointer;
}

.menu-toggle span{

    display:block;

    width:28px;

    height:2px;

    margin:6px 0;

    background:#fff;

    transition:.35s;
}

.site-header.scrolled .menu-toggle span{

    background:#111;
}

/* Hamburger -> X animation */
.menu-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
    opacity:0;
}
.menu-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}


/*==============================
MOBILE OFFCANVAS MENU
==============================*/

.mobile-nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(2px);
    opacity:0;
    visibility:hidden;
    transition:opacity .4s ease, visibility .4s ease;
    z-index:150;
}

.mobile-nav-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-nav{
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    height:100dvh;
    width:min(340px, 84%);
    background:linear-gradient(180deg, #0c0c0c, #050505);
    border-right:1px solid rgba(255,255,255,.08);
    z-index:200;
    transform:translateX(-100%);
    transition:transform .45s cubic-bezier(.3,.9,.3,1);
    display:flex;
    flex-direction:column;
    padding:26px 26px 30px;
    overflow-y:auto;
}

.mobile-nav.active{
    transform:translateX(0);
}

.mobile-nav-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:28px;
}

.mobile-nav-logo img{
    height:50px;
    width:auto;
}

.mobile-nav-close{
    background:none;
    border:1px solid rgba(255,255,255,.18);
    width:36px;
    height:36px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:.95rem;
    cursor:pointer;
    transition:.3s;
    flex-shrink:0;
}

.mobile-nav-close:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:#111;
    transform:rotate(90deg);
}

.mobile-nav-links{
    display:flex;
    flex-direction:column;
    margin-bottom:26px;
}

.mobile-nav-links a{
    padding:14px 2px;
    font-size:1.05rem;
    font-weight:700;
    letter-spacing:.02em;
    text-transform:capitalize;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.1);
    transition:color .3s ease, padding-left .3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active{
    color:var(--gold-2);
    padding-left:8px;
}

.mobile-nav-contact{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:24px;
}

.mobile-nav-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.mobile-nav-item i{
    width:34px;
    height:34px;
    flex-shrink:0;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(208,160,58,.12);
    color:var(--gold-2);
    font-size:.82rem;
}

.mobile-nav-item p{
    font-size:.85rem;
    color:#c9c9c9;
    line-height:1.55;
    margin:0;
}

.mobile-nav-socials{
    display:flex;
    gap:12px;
    margin-bottom:auto;
    padding-bottom:26px;
}

.mobile-nav-socials a{
    width:38px;
    height:38px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    display:grid;
    place-items:center;
    color:#fff;
    font-size:.9rem;
    transition:.3s;
}

.mobile-nav-socials a:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:#111;
    transform:translateY(-3px);
}

.mobile-nav-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 20px;
    background:linear-gradient(135deg, var(--gold-2), var(--gold));
    color:#111;
    font-size:.95rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
    border-radius:6px;
    text-align:center;
    box-shadow:0 10px 25px rgba(208,160,58,.28);
    transition:.35s;
}

.mobile-nav-cta:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(208,160,58,.35);
}

@media(max-width:380px){
    .mobile-nav{
        padding:22px 20px 26px;
    }
}

/* HERO - CLEAN CENTER SLIDER WITHOUT CIRCLE */
.hero-slider{
  height: calc(100vh - 80px);
  min-height: 750px;
  position: relative;
  background:#000;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
  opacity:0;
  visibility:hidden;
  transform:scale(1.045);
  transition:opacity 1s ease, visibility 1s ease, transform 6s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
   /* linear-gradient(70deg, rgba(19, 18, 18, 0.185) 0%, rgba(66, 65, 65, 0.384) 34%, rgba(63, 62, 62, 0.753) 64%, rgba(0, 0, 0, .18) 100%), */
    linear-gradient(180deg, rgb(0 0 0 / 97%) 0%, rgba(0, 0, 0, .08) 40%, rgba(0, 0, 0, .42) 100%);
}

.hero-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  /* background:linear-gradient(120deg, rgb(0 0 0 / 37%) 0% 0%, #ffffff00 46%, rgb(208 160 58 / 8%) 100% 100%); */
  clip-path:none !important;
}

.hero-overlay::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 82% 28%, rgba(243,200,95,.20), transparent 26%);
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:5;
  width:min(920px, 92%);
  max-width:920px;
  margin:0 auto;
  padding:150px 0 145px;
  color:#fff;
  text-align:center;
  background:transparent !important;
  border-radius:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  outline:0 !important;
}

.hero-content::before,
.hero-content::after{
  content:none !important;
  display:none !important;
}

.hero-content .eyebrow{
  justify-content:center;
  color:#f3c85f;
  margin-bottom:18px;
}

.hero-content .eyebrow::after{
  display:none;
}

.hero-content h1{
  max-width:850px;
  margin:0 auto 22px;
  font-family:'Barlow Condensed', sans-serif;
  font-size:clamp(3rem, 5.2vw, 5.6rem);
  line-height:.92;
  font-weight:800;
  letter-spacing:.035em;
  color:#ffffff;
  text-shadow:0 14px 38px rgba(0,0,0,.65);
}

.hero-content h1 span{
  color:var(--gold);
}

.hero-content p{
  max-width:660px;
  margin:0 auto 30px;
  font-family:'Manrope', sans-serif;
  font-size:1.03rem;
  color:#ffffff;
  line-height:1.75;
  text-shadow:0 8px 22px rgba(0,0,0,.65);
}

.hero-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:14px 26px;
  border-radius:3px;
  font-family:'Manrope', sans-serif;
  font-weight:800;
  font-size:.92rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.btn::before{
  content:"";
  position:absolute;
  inset:0;
  left:-120%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition:.6s ease;
}

.btn:hover::before{left:120%;}
.btn:hover{transform:translateY(-4px);}

.btn-gold{
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#080808;
}

.btn-outline{
  border:1px solid rgba(243,200,95,.8);
  color:#fff;
  background:rgba(0,0,0,.30);
  backdrop-filter:blur(10px);
}

.slider-arrow{display:none !important;}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:145px;
  transform:translateX(-50%);
  z-index:10;
  display:flex;
  gap:11px;
}

.hero-dots button{
  width:11px;
  height:11px;
  border-radius:50%;
  border:2px solid #fff;
  background:transparent;
  cursor:pointer;
}

.hero-dots button.active{
  background:var(--gold);
  border-color:var(--gold);
}

.hero-stats{
  position:absolute;
  left:50%;
  bottom:20px;
  width:1050px;
  max-width:82%;
  transform:translateX(-50%);
  z-index:6;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:rgba(12,12,12,.74);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  overflow:hidden;
}

.stat-card{
  display:grid;
  grid-template-columns:58px auto;
  grid-template-rows:auto auto;
  column-gap:16px;
  align-items:center;
  padding:22px 48px;
  color:#fff;
}

.stat-card:not(:last-child){border-right:1px solid rgba(208,160,58,.35);}

.stat-card i{
  grid-row:1/3;
  width:48px;
  height:48px;
  border:1px solid var(--gold);
  border-radius:12px;
  display:grid;
  place-items:center;
  color:var(--gold);
  font-size:24px;
}

.stat-card strong{
  font-family:'Barlow Condensed', sans-serif;
  font-size:2.25rem;
  line-height:1;
  font-weight:800;
}

.stat-card span{
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

@media(max-width:1100px){
  .hero-content{padding:140px 0 175px;}
  .hero-content h1{font-size:clamp(2.9rem, 7vw, 4.8rem);}
  .hero-stats{width:92%; max-width:92%;}
  .stat-card{padding:20px 28px;}
}

@media(max-width:900px){
  .hero-slider{height:auto; min-height:760px;}
  .hero-slide{background-position:center right;}
  .hero-content{width:min(680px, 88%); padding:135px 0 190px;}
  .hero-content h1{font-size:clamp(2.7rem, 8vw, 4rem);}
  .hero-stats{grid-template-columns:1fr; bottom:22px; width:min(520px, 88%);}
  .stat-card{grid-template-columns:54px auto; padding:15px 22px;}
  .stat-card:not(:last-child){border-right:0; border-bottom:1px solid rgba(208,160,58,.25);}
  .hero-dots{bottom:205px;}
}

@media(max-width:600px){
  .hero-slider{min-height:690px;}
  .hero-slide{background-position:center right;}
  .hero-overlay{background:linear-gradient(90deg, rgba(56, 56, 56, 0.274).274), rgba(66, 66, 66, 0.13);}
  .hero-content{width:min(100% - 32px, 520px); padding:120px 0 90px;}
  .hero-content .eyebrow{font-size:.66rem; letter-spacing:.16em; margin-bottom:14px;}
  .hero-content h1{font-size:clamp(2.35rem, 12vw, 3rem); line-height:.96; margin-bottom:16px;}
  .hero-content p{font-size:.92rem; line-height:1.65; margin-bottom:22px;}
  .hero-actions{gap:10px;}
  .btn{width:100%; padding:13px 18px; font-size:.82rem;}
  .hero-stats{display:none;}
  .hero-dots{bottom:30px;}
}

/* STRIP */
.standards-strip {
  background: #fff;
  padding: 22px 0;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .04)
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap
}

.strip-inner strong {
  text-transform: uppercase;
  font-size: .86rem;
  letter-spacing: .08em;
  margin-right: 20px
}

.strip-inner span {
  font-weight: 800;
  color: #101010
}

.strip-inner i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%
}

section {
  padding: 100px 0
}

.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 38px
}

.section-row h2,
.about-content h2,
.advantage-grid h2,
.section-head h2,
.cta-section h2 {
  font-size: clamp(1.5rem, 1.5vw, 3.2rem);
  line-height: 1.5;
  font-weight: 800
}

.section-row p {
  max-width: 480px;
  color: #60636b
}

.small-btn {
  border: 1px solid var(--gold);
  color: #0f0f0f;
  padding: 12px 20px;
  font-weight: 800;
  white-space: nowrap;
  transition: .3s ease
}

.small-btn:hover {
  background: var(--gold);
  transform: translateY(-3px)
}

/*====================================
PREMIUM COUNTER STRIP
====================================*/

.counter-strip{

    position:relative;

    margin-top:-25px;

    z-index:20;
}

.counter-box{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    background:rgba(20,20,20,.88);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.counter-item{

    text-align:center;

    padding:22px 18px;

    position:relative;

    transition:.35s;
}

.counter-item:not(:last-child){

    border-right:1px solid rgba(208,160,58,.18);
}

.counter-item:hover{

    background:rgba(208,160,58,.06);
}

.counter-item:hover .counter-icon{

    transform:rotateY(180deg);
}

.counter-icon{

    width:58px;

    height:58px;

    margin:auto;

    margin-bottom:14px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--gold),var(--gold-2));

    color:#111;

    font-size:22px;

    transition:.6s;
}

.counter-item h3{

    font-size:2.3rem;

    color:var(--gold-2);

    margin-bottom:6px;

    font-weight:800;

    line-height:1;
}

.counter-item p{

    color:#ddd;

    font-size:.82rem;

    letter-spacing:1px;

    text-transform:uppercase;

    font-weight:600;
}

/*==========================
TABLET
===========================*/

@media(max-width:991px){

.counter-box{

grid-template-columns:repeat(2,1fr);

}

.counter-item:nth-child(2){

border-right:none;

}

.counter-item:nth-child(1),
.counter-item:nth-child(2){

border-bottom:1px solid rgba(208,160,58,.18);

}

}

/*==========================
MOBILE
===========================*/

@media(max-width:600px){

.counter-strip{

margin-top:-30px;

}

.counter-box{

grid-template-columns:1fr;

}

.counter-item{

padding:18px 15px;

border-right:none !important;

border-bottom:1px solid rgba(208,160,58,.18);

}

.counter-item:last-child{

border-bottom:none;

}

.counter-icon{

width:48px;

height:48px;

font-size:18px;

margin-bottom:10px;

}

.counter-item h3{

font-size:1.9rem;

}

.counter-item p{

font-size:.72rem;

}

}


/* PRODUCT CARDS */
/* ================= PRODUCT SECTION ================= */

.products-section {
  background: linear-gradient(180deg, #fff, #f5f5f2);
  padding: 60px 0;
  overflow: hidden;
}

/* Wider container only for products section */
.products-section .wrap{
    width:80%;
    max-width:1500px;
    margin:auto;
}

/* Top section row */
.section-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.section-row h2{
    font-size:3rem;
    line-height:1;
    margin-top:10px;
}

.section-row p{
    max-width:450px;
    color:#666;
    line-height:1.6;
}

.small-btn{
    display:inline-block;
    padding:14px 24px;
    border:1px solid var(--gold);
    color:#111;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.small-btn:hover{
    background:var(--gold);
    color:#fff;
}

.eyebrow.dark{
    color:var(--gold);
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:.8rem;
    font-weight:600;
}

/* ================= PRODUCT GRID ================= */

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

/* ================= PRODUCT CARD ================= */

.product-card{
    background:#faf8f4;
    border:1px solid #ece6da;
    border-radius:16px;
    overflow:hidden;
    position:relative;
    isolation:isolate;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s cubic-bezier(.2,.8,.2,1),
    border-color .45s ease;

    opacity:0;
    transform:translateY(30px);
    animation:cardFadeIn .7s forwards;
}

.product-grid .product-card:nth-child(1){animation-delay:.05s;}
.product-grid .product-card:nth-child(2){animation-delay:.15s;}
.product-grid .product-card:nth-child(3){animation-delay:.25s;}
.product-grid .product-card:nth-child(4){animation-delay:.35s;}
.product-grid .product-card:nth-child(5){animation-delay:.45s;}
.product-grid .product-card:nth-child(6){animation-delay:.55s;}

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

/* Hover fill effect */
/* PRODUCT CARDS */
/* ================= PRODUCT SECTION - FULL WIDTH ================= */

.products-section {
  background: linear-gradient(180deg, #fff, #f5f5f2);
  padding: 60px 0;
  overflow: hidden;
  width: 100%;
}

/* Full width container for products section */
.products-section .wrap {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 3% !important;
  margin: 0 auto !important;
}

/* Top section row - full width */
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 10px;
}

.section-row h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-top: 10px;
  font-weight: 800;
}

.section-row p {
  max-width: 480px;
  color: #666;
  line-height: 1.6;
}

.small-btn {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: .35s;
  white-space: nowrap;
}

.small-btn:hover {
  background: var(--gold);
  color: #fff;
}

.eyebrow.dark {
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
}

/* ================= PRODUCT GRID - FULL WIDTH ================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  padding: 0 10px;
}

/* ================= PRODUCT CARD ================= */

.product-card {
  background: #faf8f4;
  border: 1px solid #ece6da;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s cubic-bezier(.2,.8,.2,1),
    border-color .45s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn .7s forwards;
  display: flex;
  flex-direction: column;
}

.product-grid .product-card:nth-child(1) { animation-delay: .05s; }
.product-grid .product-card:nth-child(2) { animation-delay: .10s; }
.product-grid .product-card:nth-child(3) { animation-delay: .15s; }
.product-grid .product-card:nth-child(4) { animation-delay: .20s; }
.product-grid .product-card:nth-child(5) { animation-delay: .25s; }
.product-grid .product-card:nth-child(6) { animation-delay: .30s; }
.product-grid .product-card:nth-child(7) { animation-delay: .35s; }
.product-grid .product-card:nth-child(8) { animation-delay: .40s; }
.product-grid .product-card:nth-child(9) { animation-delay: .45s; }
.product-grid .product-card:nth-child(10) { animation-delay: .50s; }
.product-grid .product-card:nth-child(11) { animation-delay: .55s; }
.product-grid .product-card:nth-child(12) { animation-delay: .60s; }

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

/* Hover fill effect */
.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--gold);
  opacity: .08;
  transition: height .45s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
}

.product-card:hover::before {
  height: 100%;
}

.product-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.product-card img,
.product-card b,
.product-card h3,
.product-card p {
  position: relative;
  z-index: 1;
}

/* Image */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(.75);
}

.product-card:hover img {
  transform: scale(1.08);
  filter: saturate(1);
}

/* Number badge */
.product-card b {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 800;
}

.product-card:hover b {
  transform: translateY(-5px);
}

/* Title */
.product-card h3 {
  margin: 18px 18px 6px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: .3s;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

.product-card:hover h3 {
  color: #b8860b;
}

/* Description */
.product-card p {
  margin: 0 18px 20px;
  color: #666;
  line-height: 1.6;
  font-size: .85rem;
  flex: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .product-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .products-section .wrap {
    padding: 0 4% !important;
  }
  
  .section-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
  }
  
  .section-row h2 {
    font-size: 2rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }
  
  .product-card img {
    height: 170px;
  }
  
  .product-card b {
    top: 12px;
    left: 12px;
    font-size: .65rem;
    padding: 4px 10px;
  }
  
  .product-card h3 {
    font-size: .95rem;
    margin: 14px 14px 4px;
  }
  
  .product-card p {
    font-size: .78rem;
    margin: 0 14px 16px;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 40px 0;
  }
  
  .products-section .wrap {
    padding: 0 3% !important;
  }
  
  .section-row h2 {
    font-size: 1.6rem;
  }
  
  .section-row p {
    font-size: .85rem;
  }
  
  .small-btn {
    padding: 10px 18px;
    font-size: .75rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }
  
  .product-card img {
    height: 130px;
  }
  
  .product-card b {
    top: 10px;
    left: 10px;
    font-size: .6rem;
    padding: 3px 8px;
  }
  
  .product-card h3 {
    font-size: .82rem;
    margin: 10px 10px 4px;
  }
  
  .product-card p {
    font-size: .7rem;
    margin: 0 10px 12px;
  }
}

@media (max-width: 375px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .product-card img {
    height: 110px;
  }
  
  .product-card h3 {
    font-size: .75rem;
  }
  
  .product-card p {
    font-size: .65rem;
  }
}

@media (max-width: 320px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .product-card img {
    height: 100px;
  }
}

/* ABOUT - PREMIUM */
.about-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(208,160,58,.14), transparent 30%),
    linear-gradient(180deg,#fff 0%,#f5f4ef 100%);
}
.about-bg-text{
  position:absolute;
  right:-20px;
  top:50px;
  font-size:clamp(5rem,13vw,15rem);
  font-weight:900;
  line-height:1;
  color:rgba(0,0,0,.04);
  letter-spacing:.05em;
  pointer-events:none;
  text-transform:uppercase;
  transform:rotate(-18deg);
  transform-origin:top right;
  z-index:1;
  white-space:nowrap;
}
.about-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-visual{
  position:relative;
  min-height:560px;
}

.about-frame{
  position:absolute;
  inset:30px 40px 30px 0;
  border-radius:26px;
  overflow:hidden;
  background:#111;
  box-shadow:0 35px 90px rgba(0,0,0,.25);
  transform:perspective(1000px) rotateY(5deg);
  transition:.6s ease;
}

.about-visual:hover .about-frame{
  transform:perspective(1000px) rotateY(0deg) translateY(-8px);
}

.about-frame::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(243,200,95,.32);
  border-radius:20px;
  z-index:3;
  pointer-events:none;
}

.about-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.45)),
    radial-gradient(circle at 20% 10%,rgba(243,200,95,.35),transparent 28%);
  z-index:2;
}

.about-image{
  position:absolute;
  inset:0;
  background:url('../assets/hero-6.png') center/cover;
  transform:scale(1.06);
  filter:saturate(.95) contrast(1.08);
  transition:1s cubic-bezier(.2,.8,.2,1);
}

.about-visual:hover .about-image{
  transform:scale(1.14);
}

.about-shine{
  position:absolute;
  inset:-40%;
  z-index:4;
  background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.22),transparent 55%);
  transform:translateX(-70%) rotate(8deg);
  transition:.8s ease;
  pointer-events:none;
}

.about-visual:hover .about-shine{
  transform:translateX(70%) rotate(8deg);
}

.legacy-card{
  position:absolute;
  left:0;
  bottom:45px;
  z-index:6;
  min-width:210px;
  padding:24px 26px;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#080808;
  border-radius:18px;
  box-shadow:0 24px 55px rgba(0,0,0,.22);
}

.legacy-card strong{
  display:block;
  font-size:3.1rem;
  line-height:.85;
  font-weight:900;
}

.legacy-card span{
  font-size:.86rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.supply-card{
  position:absolute;
  right:10px;
  top:65px;
  z-index:6;
  width:150px;
  height:150px;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-align:center;
  background:rgba(10,10,10,.76);
  border:1px solid rgba(243,200,95,.35);
  color:#fff;
  backdrop-filter:blur(16px);
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.supply-card b{
  display:block;
  color:var(--gold-2);
  font-size:2.8rem;
  line-height:1;
  font-weight:900;
}

.supply-card span{
  display:block;
  max-width:90px;
  font-size:.72rem;
  line-height:1.25;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.08em;
}

.about-content{
  position:relative;
}

.about-content h2{
  font-size:clamp(2.6rem,5vw,3rem);
  line-height:.9;
  font-weight:900;
  margin-bottom:24px;
  color:#111;
}

.about-content p{
  color:#5e626a;
  max-width:640px;
  margin:22px 0 30px;
  font-size:1.03rem;
  line-height:1.85;
}

.check-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.check-grid span{
  position:relative;
  overflow:hidden;
  background:#fff;
  padding:18px 20px 18px 52px;
  font-weight:900;
  border:1px solid #ece7dc;
  border-radius:14px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  transition:.35s ease;
}

.check-grid span::before{
  content:"✓";
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#111;
  font-size:.8rem;
}

.check-grid span::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(208,160,58,.12),transparent);
  transform:translateX(-120%);
  transition:.55s ease;
}

.check-grid span:hover{
  transform:translateY(-6px);
  border-color:var(--gold);
  box-shadow:0 22px 45px rgba(0,0,0,.1);
}

.check-grid span:hover::after{
  transform:translateX(120%);
}

@media(max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-visual{
    min-height:460px;
  }

  .about-frame{
    inset:20px 0;
    transform:none;
  }

  .supply-card{
    right:18px;
  }
}

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

  .about-visual{
    min-height:390px;
  }

  .legacy-card{
    bottom:18px;
    left:14px;
    min-width:165px;
    padding:18px;
  }

  .legacy-card strong{
    font-size:2.4rem;
  }

  .supply-card{
    width:118px;
    height:118px;
    top:34px;
  }

  .supply-card b{
    font-size:2.1rem;
  }

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


/* PROCESS */
.process-section {
  background: linear-gradient(120deg, #141414, #1d1812, #141414, #20180d);
  background-size: 300% 300%;
  animation: bgShift 14s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(208, 160, 58, .2), transparent 34%)
}

.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(208, 160, 58, .12), transparent 40%)
}

.section-head.center {
  text-align: center;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

/* TIMELINE CONTAINER */
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  z-index: 2;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 14px;
  opacity: 0;
  transform: translateY(30px);
  animation: stepRise .7s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--i) * .15s);
}

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

/* CONNECTOR SEGMENTS — one per gap, anchored to node edges, never extends past last node */
.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 2px;
  background: rgba(255, 255, 255, .12);
  z-index: 0;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% + 30px);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #f3d488);
  box-shadow: 0 0 12px rgba(208,160,58,.7);
  z-index: 0;
  animation: lineDraw .6s cubic-bezier(.3,.8,.3,1) forwards;
  animation-delay: calc(var(--i) * .35s + .45s);
}

@keyframes lineDraw {
  to { width: calc(100% - 60px); }
}

/* NODE CIRCLES — fully opaque so connectors tuck cleanly behind, never bleed through the numbers */
.step-node {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #1c1c1c;
  border: 2px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  isolation: isolate;
  transition: border-color .4s ease, transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, background .4s ease;
}

.step-node b {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 800;
  position: relative;
  z-index: 4;
  transition: color .35s ease;
}

/* pulsing ring around each node */
.step-node i.pulse,
.step-node::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(208,160,58,.4);
  opacity: 0;
  z-index: 1;
  animation: pulseRing 2.6s ease-out infinite;
}

.process-step:nth-child(1) .step-node::before { animation-delay: 1.4s }
.process-step:nth-child(2) .step-node::before { animation-delay: 1.7s }
.process-step:nth-child(3) .step-node::before { animation-delay: 2.0s }
.process-step:nth-child(4) .step-node::before { animation-delay: 2.3s }
.process-step:nth-child(5) .step-node::before { animation-delay: 2.6s }
.process-step:nth-child(6) .step-node::before { animation-delay: 2.9s }

@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .6; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* hover state */
.process-step:hover .step-node {
  border-color: var(--gold);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 10px 30px rgba(208,160,58,.35);
  background: #221b0e;
}

.process-step:hover .step-node b {
  color: #fff;
}

.process-step span {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .06em;
  color: #ddd;
  transition: color .35s ease, transform .35s ease;
}

.process-step:hover span {
  color: var(--gold);
  transform: translateY(-2px);
}

/* responsive: stack vertically on small screens */
@media (max-width: 860px) {
  .process-line {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .process-step:not(:last-child)::before,
  .process-step:not(:last-child)::after {
    top: 60px;
    left: 30px;
    width: 2px;
    height: calc(100% + 50px - 60px);
  }
  .process-step:not(:last-child)::after {
    height: 0;
    animation-name: lineDrawVertical;
  }
  @keyframes lineDrawVertical {
    to { height: calc(100% + 50px - 60px); }
  }
  .process-step {
    text-align: left;
    padding-left: 70px;
  }
  .step-node {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}

/* ═════════ ADVANTAGE SECTION — LIGHT THEME ═════════ */

.advantage-section{
    padding:70px 0;
    background:linear-gradient(
    135deg,
    #faf8f4 0%,
    #f4f1ea 50%,
    #fff 100%
    );

    position:relative;
    overflow:hidden;
}

/* subtle pattern */

.advantage-section::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(208,160,58,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(208,160,58,.04) 1px,transparent 1px);

    background-size:40px 40px;
}

.adv-bg-word{
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    font-size:clamp(90px,15vw,180px);
    font-weight:900;
    color:rgba(208,160,58,.04);
    pointer-events:none;
}

/* container */

.advantage-section .wrap{
    width:95%;
    max-width:1500px;
    margin:auto;
    position:relative;
    z-index:2;
}
/* ================= TOP SECTION COMPACT + CENTER ================= */

.adv-top{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    max-width:800px;
    margin:0 auto 35px auto;

    gap:18px;
}

/* small top label */

.eyebrow{
    font-size:.75rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:700;
}

/* heading smaller */

.adv-heading{
     font-size:clamp(1.8rem,3vw,2.4rem);
    line-height:1.2;
    white-space:nowrap;
    margin-top:8px;
    margin-bottom:10px;
    color:#111;
}

.adv-highlight{
    color:var(--gold);
}

/* paragraph smaller */

.adv-top-right p{
    font-size:.92rem;
    color:#666;
    line-height:1.7;
    max-width:650px;
    margin:auto;
}

/* button */

.adv-link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 22px;

    border:1px solid rgba(208,160,58,.25);
    border-radius:40px;

    background:#fff;

    color:var(--gold);

    text-decoration:none;
    font-size:.8rem;
    font-weight:700;

    transition:.35s;
}

.adv-link:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-3px);
}

/* mobile */
@media(max-width:768px){

.adv-heading{
    white-space:normal;
    font-size:1.8rem;
}

}
@media(max-width:576px){

.adv-top{
    max-width:100%;
    padding:0 10px;
}

.adv-heading{
    white-space:normal;
    font-size:1.8rem;
}

.adv-top-right p{
    font-size:.82rem;
}

.adv-link{
    font-size:.75rem;
    padding:8px 18px;
}

}

/* ================= STATS ================= */

.adv-stats{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:15px;

    margin-bottom:40px;
}

.adv-stat{

    background:#fff;
    padding:18px;

    border-radius:14px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.adv-stat strong{

    display:block;
    font-size:2rem;
    color:var(--gold);

    margin-bottom:8px;
}

.adv-stat span{
    font-size:.75rem;
    color:#777;
    text-transform:uppercase;
}

.adv-stat-div{
display:none;
}

/* ================= CARDS ================= */

.adv-cards{

display:grid;
grid-template-columns:repeat(3,1fr);

gap:20px;
margin-bottom:40px;
}

.adv-card{

height:220px;   /* smaller */

perspective:1000px;
}

.adv-card-inner{

position:relative;
width:100%;
height:100%;

transform-style:preserve-3d;

/* auto flip */

animation:autoFlip 8s infinite;
}

.adv-card:nth-child(1) .adv-card-inner{
animation-delay:0s;
}

.adv-card:nth-child(2) .adv-card-inner{
animation-delay:1s;
}

.adv-card:nth-child(3) .adv-card-inner{
animation-delay:2s;
}

.adv-card:nth-child(4) .adv-card-inner{
animation-delay:3s;
}

.adv-card:nth-child(5) .adv-card-inner{
animation-delay:4s;
}

.adv-card:nth-child(6) .adv-card-inner{
animation-delay:5s;
}

@keyframes autoFlip{

0%,35%{
transform:rotateY(0deg);
}

45%,80%{
transform:rotateY(180deg);
}

100%{
transform:rotateY(360deg);
}

}

.adv-card-front,
.adv-card-back{

position:absolute;
inset:0;

padding:18px;

border-radius:14px;

backface-visibility:hidden;
}

.adv-card-front{

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.07);

border:1px solid rgba(208,160,58,.1);
}

.adv-card-back{

background:linear-gradient(
135deg,
var(--gold),
#c58d0f
);

transform:rotateY(180deg);

color:#111;
}

.adv-card-icon{
font-size:1.5rem;
margin:8px 0;
}

.adv-card h3{

font-size:.95rem;
margin-bottom:10px;
}

.adv-card p{

font-size:.8rem;
line-height:1.6;
color:#666;
}

.adv-card-back p{
color:#222;
}

.adv-card-btn{

display:inline-block;

padding:8px 16px;

border-radius:50px;

background:rgba(0,0,0,.1);

color:#111;

text-decoration:none;

font-size:.72rem;

font-weight:700;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

.adv-top{
grid-template-columns:1fr;
}

.adv-cards{
grid-template-columns:repeat(2,1fr);
}

.adv-stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

/* KEEP 2 columns on mobile */

.adv-cards{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.adv-card{
height:180px;
}

.adv-card h3{
font-size:.75rem;
}

.adv-card p{
font-size:.65rem;
line-height:1.4;
}

.adv-stat{
padding:12px;
}

.adv-stat strong{
font-size:1.5rem;
}


}

/* ===========================
   DYNAMIC BRAND SECTION
=========================== */

.brands-section{

padding:70px 0;

position:relative;
overflow:hidden;

background:
linear-gradient(
-45deg,
#faf8f4,
#f8f2e8,
#fff7eb,
#f5f0e5
);

background-size:400% 400%;

animation:bgMove 12s ease infinite;
}

/* animated background */

@keyframes bgMove{

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

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

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

}

/* floating glowing circles */

.brands-section::before{

content:"";

position:absolute;

width:450px;
height:450px;

left:-150px;
top:-100px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(208,160,58,.16),
transparent 70%
);

animation:floatGlow1 9s infinite alternate;
}

.brands-section::after{

content:"";

position:absolute;

width:350px;
height:350px;

right:-100px;
bottom:-100px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,210,110,.18),
transparent 70%
);

animation:floatGlow2 8s infinite alternate;
}

@keyframes floatGlow1{

from{
transform:
translate(0,0);
}

to{
transform:
translate(80px,40px);
}

}

@keyframes floatGlow2{

from{
transform:
translate(0,0);
}

to{
transform:
translate(-70px,-30px);
}

}

/* subtle grid pattern */

.brands-section .wrap{

position:relative;
z-index:5;

width:95%;
max-width:1400px;
margin:auto;
}

.brands-section .wrap::before{

content:"";

position:absolute;
inset:0;

background-image:
linear-gradient(rgba(208,160,58,.03) 1px, transparent 1px),
linear-gradient(90deg,rgba(208,160,58,.03) 1px,transparent 1px);

background-size:50px 50px;

pointer-events:none;
}

/* heading */

.brands-heading{

text-align:center;

max-width:700px;

margin:auto auto 50px;
}

.brands-heading .eyebrow{

font-size:.75rem;

letter-spacing:3px;

font-weight:700;

color:var(--gold);
}

.brands-heading h2{

font-size:clamp(2rem,4vw,3rem);

margin:12px 0;

color:#111;
}

.brands-heading p{

color:#666;

line-height:1.7;
}

/* slider */

.brands-slider{

overflow:hidden;

position:relative;
}

.brands-track{

display:flex;

align-items:center;

gap:50px;

width:max-content;

animation:moveBrands 24s linear infinite;
}

@keyframes moveBrands{

from{
transform:translateX(0);
}

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

}

.brands-slider:hover .brands-track{

animation-play-state:paused;
}

/* NO CARD BACKGROUND */

.brand-card{

display:flex;

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

padding:10px;

flex-shrink:0;

transition:.5s;
}

.brand-card:hover{

transform:
translateY(-10px)
scale(1.08);
}

/* logo image */

.brand-card img{

height:60px;
width:auto;

object-fit:contain;

opacity:.95;

transition:.5s;
}

.brand-card:hover img{

transform:scale(1.15);
}

/* mobile */

@media(max-width:768px){

.brands-section{

padding:50px 0;
}

.brand-card img{

height:40px;
}

.brands-track{

gap:30px;
}

.brands-heading h2{

font-size:1.8rem;
}

.brands-heading p{

font-size:.85rem;
}

}
/* ============================
   CATALOGUE SECTION REDESIGN
============================= */

.catalogue-section{

padding:55px 0;

background:linear-gradient(
135deg,
#faf8f4 0%,
#f6f2ea 50%,
#fff 100%
);

position:relative;
overflow:hidden;
}

.catalogue-glow{

position:absolute;

width:450px;
height:450px;

right:-180px;
top:-100px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(208,160,58,.12),
transparent 70%
);

pointer-events:none;
}

/* container */

.catalogue-grid{

display:grid;

grid-template-columns:300px 1fr;

gap:45px;

align-items:center;
}

/* ================= PDF CARD ================= */

.pdf-card{

width:220px;
height:290px;

margin:auto;

background:
rgba(255,255,255,.75);

backdrop-filter:blur(15px);

border-radius:18px;

overflow:hidden;

border:1px solid rgba(208,160,58,.15);

box-shadow:
0 12px 35px rgba(0,0,0,.08);

transition:.45s;
}

.pdf-card:hover{

transform:
translateY(-8px)
rotate(-2deg);

box-shadow:
0 18px 45px rgba(0,0,0,.12);
}

.pdf-top{

height:160px;

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

background:
linear-gradient(
135deg,
var(--gold),
#e4b340
);
}

.pdf-top i{

font-size:65px;
color:white;
}

.pdf-bottom{

padding:18px;
text-align:center;
}

.pdf-bottom h3{

font-size:24px;
color:#111;

margin-bottom:4px;
}

.pdf-bottom p{

font-size:.9rem;
color:#666;
margin-bottom:10px;
}

.pdf-bottom span{

display:inline-block;

padding:6px 16px;

font-size:.75rem;
font-weight:700;

border-radius:30px;

background:#f3f0e7;
color:#444;
}

/* ================= CONTENT ================= */

.catalogue-content h2{

font-size:clamp(
1.8rem,
3vw,
2.7rem
);

line-height:1.2;

color:#111;

margin:15px 0;
}

.catalogue-content p{

font-size:.95rem;
line-height:1.8;

color:#666;

margin-bottom:25px;

max-width:700px;
}

.eyebrow{

font-size:.75rem;
letter-spacing:2px;

color:var(--gold);

font-weight:700;
}

/* ================= FEATURES ================= */

.catalogue-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:12px;

margin-bottom:28px;
}

.catalogue-features div{

font-size:.9rem;

background:white;

padding:10px 14px;

border-radius:10px;

color:#555;

box-shadow:
0 4px 15px rgba(0,0,0,.04);
}

.catalogue-features i{

margin-right:8px;

color:var(--gold);
}

/* ================= BUTTON ================= */

.catalogue-btn{

display:inline-flex;
align-items:center;
gap:10px;

padding:14px 28px;

border-radius:50px;

text-decoration:none;

font-weight:700;

color:white;

background:
linear-gradient(
135deg,
var(--gold),
#e1b54a
);

transition:.35s;
}

.catalogue-btn:hover{

transform:translateY(-4px);

box-shadow:
0 10px 25px rgba(208,160,58,.3);
}

.catalogue-size{

margin-top:15px;

font-size:.85rem;
color:#888;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

.catalogue-grid{

grid-template-columns:1fr;

gap:30px;

text-align:center;
}

.catalogue-content p{

margin:auto auto 25px;
}

.catalogue-features{

grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.catalogue-section{

padding:40px 0;
}

.catalogue-features{

grid-template-columns:1fr;
}

.pdf-card{

width:190px;
height:250px;
}

.pdf-top{

height:130px;
}

.pdf-top i{

font-size:50px;
}

.catalogue-content h2{

font-size:1.7rem;
}

.catalogue-content p{

font-size:.85rem;
}

.catalogue-btn{

padding:12px 22px;
font-size:.85rem;
}

}
/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: #55524bab;
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

/* animated diagonal gold light beam */
.cta-beam {
  position: absolute;
  top: -80px;
  left: -20%;
  width: 60%;
  height: 300%;
  background: linear-gradient(105deg, transparent 40%, rgba(208,160,58,.07) 50%, transparent 60%);
  transform: rotate(0deg);
  animation: beamSweep 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes beamSweep {
  0%   { left: -40%; }
  50%  { left: 80%; }
  100% { left: -40%; }
}

/* subtle grid overlay texture */
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

/* pulsing gold radial glow in centre */
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,160,58,.12), transparent 70%);
  animation: ctaPulse 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.cta-inner {
  position: relative;
  z-index: 1;
}

/* badge pill above heading */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208,160,58,.15);
  border: 1px solid rgba(208,160,58,.35);
  color: var(--gold-2);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.cta-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  animation: dot-blink 1.4s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}

.cta-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 780px;
  margin-inline: auto;
}

.cta-heading span {
  color: var(--gold);
  position: relative;
}

/* underline shimmer on the heading span */
.cta-heading span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  background-size: 200%;
  animation: shimmer 2.4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: -200%; }
  100% { background-position: 200%; }
}

.cta-sub {
  font-size: .98rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 36px;
  max-width: 480px;
  margin-inline: auto;
}

.cta-btn {
  margin: auto;
  position: relative;
  overflow: hidden;
}

/* shine sweep on the CTA button */
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}

/* ── responsive ── */
@media (max-width: 860px) {
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .adv-bg-glyph { font-size: 18vw; }
}

@media (max-width: 560px) {
  .advantage-cards {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(208, 160, 58, .2);
  border-bottom: 1px solid rgba(208, 160, 58, .2);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

/* fade edges */
.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--charcoal), transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--charcoal), transparent);
}

.marquee-track {
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

.marquee-inner span {
  color: rgba(255, 255, 255, .75);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 0 28px;
  white-space: nowrap;
  transition: color .3s ease;
}

.marquee-inner span:hover {
  color: var(--gold-2);
}

.marquee-inner i {
  color: var(--gold);
  font-style: normal;
  font-size: .65rem;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════ */
/* ══════════════════════════════════════
   TESTIMONIALS — SINGLE STRIP
══════════════════════════════════════ */
.testimonials-section {
  background: #f5f2eb;
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208,160,58,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,160,58,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* HEADER */
.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.testi-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin-top: 10px;
  color: var(--charcoal);
}

.testi-subtitle {
  font-size: .93rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.75;
  padding-bottom: 4px;
}

/* STRIP OUTER — clips overflow + edge fades */
.testi-strip-outer {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 12px 0 16px;
}

.testi-strip-outer::before,
.testi-strip-outer::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.testi-strip-outer::before {
  left: 0;
  background: linear-gradient(90deg, #f5f2eb, transparent);
}

.testi-strip-outer::after {
  right: 0;
  background: linear-gradient(270deg, #f5f2eb, transparent);
}

/* TRACK */
.testi-strip-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: stripScroll 55s linear infinite;
}

/* pause entire strip when any card is hovered */
.testi-strip-track:has(.testi-card:hover) {
  animation-play-state: paused;
}

@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CARDS */
.testi-card {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(208,160,58,.15);
  border-radius: 16px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);

  /* fill transition base */
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    border-color .45s ease;
}

/* gold fill — rises from bottom via pseudo */
.testi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #d0a03a, #f3c85f);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.3,.9,.3,1);
  z-index: 0;
}

.testi-card:hover::before {
  transform: translateY(0);
}

.testi-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold);
  box-shadow:
    0 24px 60px rgba(208,160,58,.3),
    0 8px 20px rgba(0,0,0,.1);
}

/* all content sits above the fill */
.testi-top,
.testi-card p,
.testi-author,
.testi-tag {
  position: relative;
  z-index: 1;
  transition: color .35s ease;
}

/* TOP ROW */
.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* AVATAR */
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1a00;
  font-size: .73rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  box-shadow: 0 3px 12px rgba(208,160,58,.35);
  flex-shrink: 0;
  transition: background .35s ease, box-shadow .35s ease;
}

/* on hover fill — avatar flips to dark */
.testi-card:hover .testi-avatar {
  background: rgba(0,0,0,.25);
  box-shadow: 0 3px 12px rgba(0,0,0,.2);
  color: #fff;
}

/* STARS */
.testi-stars {
  font-size: .78rem;
  letter-spacing: 2px;
  color: var(--gold);
  transition: color .35s ease;
}

.testi-card:hover .testi-stars { color: #fff; }

/* BODY TEXT */
.testi-card p {
  font-size: .88rem;
  color: #555;
  line-height: 1.74;
  flex: 1;
  transition: color .35s ease;
}

.testi-card:hover p { color: rgba(0,0,0,.75); }

/* AUTHOR */
.testi-author strong {
  display: block;
  font-size: .83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--charcoal);
  transition: color .35s ease;
}

.testi-card:hover .testi-author strong { color: #000; }

.testi-author span {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  margin-top: 2px;
  transition: color .35s ease;
}

.testi-card:hover .testi-author span { color: rgba(0,0,0,.6); }

/* TAG CHIP */
.testi-tag {
  display: inline-block;
  background: rgba(208,160,58,.1);
  border: 1px solid rgba(208,160,58,.25);
  color: #7a5800;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  padding: 4px 11px;
  border-radius: 999px;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}

.testi-card:hover .testi-tag {
  background: rgba(0,0,0,.18);
  border-color: rgba(0,0,0,.25);
  color: #fff;
}

/* responsive */
@media (max-width: 760px) {
  .testi-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .testi-subtitle { max-width: 100%; }
  .testi-card { width: 280px; padding: 22px 18px 18px; }
  .testi-strip-outer::before,
  .testi-strip-outer::after { width: 60px; }
}

/* FOOTER */
.footer {
  background: #080808;
  color: #fff;
  padding: 70px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1.4fr;
  gap: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 45px
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px
}

.footer h4 {
  font-family: 'Space Grotesk';
  text-transform: uppercase;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 15px
}

.footer a,
.footer p {
  display: block;
  color: #bfc0c3;
  margin-bottom: 10px;
  font-size: .90rem
}

.footer a:hover {
  color: var(--gold-2)
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.developer-credit{
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.developer-credit a{
    color: var(--gold);
    text-decoration: none;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 27px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .28)
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: .8s ease
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:1100px) {
  .nav-menu {
    gap: 20px
  }

  .quote-btn {
    padding: 13px 18px
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .hero-stats {
    width: 92%
  }

  .stat-card {
    padding: 24px 30px
  }

  .section-row {
    grid-template-columns: 1fr
  }
}

@media(max-width:900px) {
  .topbar {
    display: none
  }

  .site-header {
    top: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(12px)
  }

  .nav-wrap {
    height: 82px
  }

  .brand img {
    height: 58px
  }

  .menu-toggle {
    display: block
  }

  .nav-menu {
    display: none
  }

  .quote-btn {
    display: none
  }

  .hero-slider{

    height:100vh;

    min-height:850px;

}

  .hero-content h1 {
    font-size: 4rem
  }

  .slider-arrow {
    display: none
  }

  .hero-stats {
    grid-template-columns: 1fr;
    bottom: 22px
  }

  .stat-card {
    grid-template-columns: 56px auto;
    padding: 16px 22px
  }

  .stat-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(208, 160, 58, .25)
  }

  .hero-dots {
    bottom: 235px
  }

  .about-grid,
  .advantage-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .process-line {
    grid-template-columns: 1fr 1fr
  }

  .about-image::after {
    right: 18px
  }

  .footer-bottom {
    flex-direction: column
  }

  .check-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .wrap {
    width: min(100% - 32px, 1200px)
  }

  .hero-slider {
    min-height: 720px
  }

  .hero-slide {
    background-position: center right;
    padding-top: 80px
  }

  .hero-content {
    padding-top: 28px
  }

  .hero-content h1 {
    font-size: 3rem
  }

  .hero-content p {
    font-size: .95rem
  }

  .btn {
    width: 100%;
    justify-content: center
  }

  .hero-stats {
    display: none
  }

  .hero-dots {
    bottom: 30px
  }

  .strip-inner {
    justify-content: flex-start;
    gap: 16px
  }

  .product-grid {
    grid-template-columns: 1fr
  }

  .process-line {
    grid-template-columns: 1fr
  }

  .advantage-cards {
    grid-template-columns: 1fr
  }

  .about-image {
    min-height: 340px
  }

  .about-image::after {
    font-size: 1.3rem;
    right: 10px;
    bottom: 20px;
    padding: 14px 18px
  }

  section {
    padding: 70px 0
  }
}