/* =========================================================
   COMPOSTO by DSC Engineering — Stylesheet
   Design system: off-white base / charcoal ink / black sections
   / restrained metallic gold accent / mono "readout" data style
   ========================================================= */

/* ---------- Tokens ---------- */
:root{
  --white:#FFFFFF;
  --bg:#FAF9F4;
  --bg-alt:#F1EEE3;
  --ink:#1B1B17;
  --ink-soft:#55534A;
  --ink-faint:#8B8878;
  --black:#0D0D0B;
  --black-2:#17170F;
  --black-3:#201F16;
  --gold:#B8912B;
  --gold-light:#E3C56B;
  --gold-deep:#8C6A1B;
  --gold-line:rgba(184,145,43,.35);
  --green:#4C6B4F;
  --line:#E4E0D2;
  --line-dark:rgba(227,197,107,.18);

  --font-display:'Oswald', 'Arial Narrow', sans-serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:'JetBrains Mono', 'Courier New', monospace;

  --container:1240px;
  --container-narrow:820px;
  --radius-sm:4px;
  --radius:8px;
  --radius-lg:14px;
  --shadow-sm:0 1px 3px rgba(13,13,11,.06), 0 1px 2px rgba(13,13,11,.08);
  --shadow-md:0 8px 24px rgba(13,13,11,.10);
  --shadow-gold:0 8px 28px rgba(184,145,43,.25);

  --fixed-bar-h:64px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:84px;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{margin:0; padding:0; list-style:none;}
h1,h2,h3,h4,p{margin:0;}
button{font:inherit; cursor:pointer; border:none; background:none; color:inherit;}
svg{display:block;}
.icon{width:20px; height:20px; flex-shrink:0;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
}

:focus-visible{outline:2px solid var(--gold); outline-offset:2px;}

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--black); color:var(--gold-light);
  padding:12px 20px; z-index:1000; border-radius:0 0 6px 0;
}
.skip-link:focus{left:0;}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}
.container--narrow{max-width:var(--container-narrow);}

/* ---------- Type ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono);
  font-weight:600;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin-bottom:14px;
}
.eyebrow--light{color:var(--gold-light);}
.eyebrow__dot{
  width:6px; height:6px; border-radius:50%; background:var(--gold);
  box-shadow:0 0 0 3px var(--gold-line);
}

.section-title{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(28px, 4.4vw, 44px);
  line-height:1.12;
  letter-spacing:.01em;
  color:var(--ink);
  margin-bottom:14px;
  text-transform:uppercase;
}
.section-title--light{color:var(--white);}

.section-desc{
  font-size:16px;
  color:var(--ink-soft);
  max-width:640px;
  margin-bottom:40px;
}
.section-desc--light{color:#C9C6B6;}

.text-gold{color:var(--gold);}

/* ---------- Layout rhythm ---------- */
.section{padding:76px 0;}
.section--alt{background:var(--bg-alt);}
.section--dark{background:var(--black); color:var(--white);}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:14.5px;
  letter-spacing:.02em;
  padding:14px 26px;
  border-radius:6px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
  border:1.5px solid transparent;
}
.btn:active{transform:translateY(1px);}
.btn--gold{
  background:linear-gradient(180deg, var(--gold-light), var(--gold));
  color:var(--black);
  box-shadow:var(--shadow-gold);
}
.btn--gold:hover{box-shadow:0 10px 32px rgba(184,145,43,.38); transform:translateY(-1px);}
.btn--outline{
  border-color:var(--ink);
  color:var(--ink);
  background:transparent;
}
.btn--outline:hover{background:var(--ink); color:var(--white);}
.btn--outline-light{
  border-color:rgba(255,255,255,.4);
  color:var(--white);
}
.btn--outline-light:hover{border-color:var(--gold); color:var(--gold-light);}
.btn--whatsapp{
  background:#25D366;
  color:#08350f;
}
.btn--whatsapp:hover{background:#20bd5a;}
.btn--sm{padding:9px 18px; font-size:13px;}
.btn--lg{padding:16px 32px; font-size:15.5px;}
.btn--xl{padding:18px 38px; font-size:16px;}
.btn--block{width:100%;}

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:500;
  background:rgba(250,249,244,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled{box-shadow:0 4px 20px rgba(13,13,11,.08);}
.site-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
  gap:24px;
}
.brand{display:flex; align-items:center; gap:10px;}
.brand__mark{color:var(--gold); width:36px; height:36px; flex-shrink:0;}
.brand__mark svg{width:100%; height:100%;}
.brand__text{display:flex; flex-direction:column; line-height:1.1;}
.brand__name{
  font-family:var(--font-display); font-weight:700; font-size:21px;
  letter-spacing:.04em; color:var(--ink);
}
.brand--footer .brand__name{color:var(--white);}
.brand__sub{font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-faint);}
.brand--footer .brand__sub{color:var(--ink-faint);}

.main-nav__list{display:flex; align-items:center; gap:30px;}
.main-nav__list a{
  font-size:14px; font-weight:600; color:var(--ink-soft);
  padding:6px 2px; border-bottom:2px solid transparent;
  transition:color .15s ease, border-color .15s ease;
}
.main-nav__list a:hover{color:var(--ink); border-color:var(--gold);}

.site-header__actions{display:flex; align-items:center; gap:18px;}
.header-phone{display:flex; align-items:center; gap:8px; font-weight:700; font-size:14px; color:var(--ink);}
.header-phone .icon{color:var(--gold-deep); width:17px; height:17px;}

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; border-radius:6px;
  flex-shrink:0;
}
.nav-toggle span{width:22px; height:2px; background:var(--ink); transition:transform .2s ease, opacity .2s ease;}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0D0D0B;
    padding: 24px 28px 140px;
    z-index: 4900;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.mobile-nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mobile-nav__list a {
    display: block;
    padding: 16px 4px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ---------- Media Queries Fixes ---------- */
@media (max-width: 900px){
    .site-header{
        position:sticky;
        top:0;
        z-index:5000;
    }
    .main-nav{display:none;}
    .site-header__actions .header-phone{display:none;}
    .nav-toggle{display:flex;}
}

/* ---------- Hero ---------- */
.hero{
  background:var(--black);
  color:var(--white);
  position:relative;
  padding:64px 0 56px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(184,145,43,.16), transparent 60%),
    radial-gradient(500px 400px at 0% 100%, rgba(76,107,79,.12), transparent 60%);
  pointer-events:none;
}
.hero__inner{
  position:relative;
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.hero__title{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(32px, 4.6vw, 54px);
  line-height:1.1;
  text-transform:uppercase;
  margin-bottom:20px;
}
.hero__desc{font-size:17px; color:#CFCCBC; max-width:520px; margin-bottom:32px;}
.hero__cta-row{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:36px;}
.hero__trust-strip{
  display:flex; flex-wrap:wrap; align-items:center; gap:12px;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:.03em;
  color:#D9D6C6;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
}
.hero__trust-strip .stat-num{color:var(--gold-light); font-weight:700; margin-right:4px;}
.stat-divider{width:1px; height:14px; background:rgba(255,255,255,.2); display:inline-block;}

.hero__media{position:relative;}
.hero__badge{
  position:absolute; left:-14px; bottom:-18px;
  background:var(--black-2);
  border:1px solid var(--line-dark);
  border-radius:var(--radius);
  padding:14px 18px;
  display:flex; flex-direction:column; gap:2px;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
  max-width:220px;
}
.hero__badge .stat-num{font-family:var(--font-mono); color:var(--gold-light); font-weight:700; font-size:26px;}
.hero__badge span:last-child{font-size:11.5px; color:#B9B6A6; line-height:1.35;}

/* ---------- Media / image slot placeholders ---------- */
.media-slot{
  position:relative;
  width:100%;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--bg-alt);
  border:1px solid var(--line);
}

.media-slot--product,
.media-slot--owc {
  aspect-ratio: auto !important; 
  height: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
}
.media-slot--product img,
.media-slot--owc img {
  object-fit: contain !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 auto !important;
  border-radius: var(--radius) !important;
  display: block !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
}

.media-slot__placeholder{
  display:none;
  flex-direction:column; align-items:center; justify-content:center; gap:8px;
  text-align:center;
  padding:24px;
  color:var(--ink-faint);
  background:
    repeating-linear-gradient(45deg, rgba(184,145,43,.05) 0 10px, transparent 10px 20px),
    var(--bg-alt);
}
.media-slot__placeholder svg{width:44px; height:44px; color:var(--gold-deep); opacity:.6;}
.media-slot__placeholder span{font-family:var(--font-display); font-size:14px; letter-spacing:.04em; text-transform:uppercase; color:var(--ink-soft);}
.media-slot__placeholder small{font-family:var(--font-mono); font-size:10.5px; color:var(--ink-faint);}
.media-slot--empty img{display:none;}
.media-slot--empty .media-slot__placeholder{display:flex;}

.media-slot--hero{aspect-ratio:4/3.1;}
.media-slot--hero img{width:100%; height:100%; object-fit:cover;}
.media-slot--video{aspect-ratio:16/9;}
.media-slot--video img{width:100%; height:100%; object-fit:cover;}

/* ---------- Readout (signature data element) ---------- */
.readout{
  display:flex; align-items:baseline; gap:10px; flex-wrap:wrap;
  font-family:var(--font-mono);
  padding:12px 0;
  margin:16px 0 22px;
  border-top:1px dashed var(--line);
  border-bottom:1px dashed var(--line);
}
.readout__dot{width:8px; height:8px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 3px var(--gold-line); flex-shrink:0;}
.readout__label{font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-faint);}
.readout__value{font-size:18px; font-weight:700; color:var(--ink); letter-spacing:.01em;}
.readout--lg .readout__value{font-size:26px; color:var(--gold-deep);}
.stat-highlight{font-family:var(--font-mono); color:var(--gold-deep); font-size:24px !important; margin-bottom:6px; text-transform:none !important;}

/* ---------- Popular Models ---------- */
.model-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
  margin-top:8px;
}
.model-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:18px 18px 22px;
  box-shadow:var(--shadow-sm);
  position:relative;
  transition:transform .2s ease, box-shadow .2s ease;
}
.model-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md);}
.model-card--featured{border-color:var(--gold); box-shadow:var(--shadow-gold);}
.model-card__plate{
  position:absolute; top:14px; right:14px; z-index:2;
  font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase;
  background:var(--black); color:var(--gold-light);
  padding:4px 10px; border-radius:20px;
}
.model-card--featured .model-card__plate{background:var(--gold); color:var(--black);}
.model-card__body{padding-top:16px;}
.model-card__body h3{
  font-family:var(--font-display); font-size:21px; text-transform:uppercase; letter-spacing:.02em;
  margin-bottom:2px;
}

/* ---------- CTA strip (Wholesale) ---------- */
.cta-strip{
  background:var(--black);
  color:var(--white);
  padding:64px 0;
  position:relative;
  overflow:hidden;
}
.cta-strip::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(184,145,43,.14), transparent 55%);
}
.cta-strip__inner{position:relative; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;}
.cta-strip__title{
  font-family:var(--font-display); font-size:clamp(24px,3.4vw,34px); font-weight:600; line-height:1.2;
  text-transform:uppercase; max-width:620px; margin-bottom:10px;
}
.cta-strip__desc{color:#CFCCBC; max-width:480px;}
.cta-strip__actions{display:flex; gap:14px; flex-wrap:wrap;}

/* ---------- Video frame ---------- */
.video-frame{
  position:relative; max-width:880px; margin:0 auto;
  border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--gold-line);
  box-shadow:var(--shadow-md);
}
.video-frame__play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:76px; height:76px; border-radius:50%;
  background:rgba(13,13,11,.55);
  color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(2px);
  transition:transform .18s ease, background .18s ease;
}
.video-frame__play svg{width:38px; height:38px;}
.video-frame__play:hover{transform:translate(-50%,-50%) scale(1.07); background:rgba(184,145,43,.85); color:var(--black);}
.video-frame__caption{
  padding:14px 18px; font-family:var(--font-mono); font-size:12px; letter-spacing:.04em;
  color:var(--ink-soft); background:var(--white); border-top:1px solid var(--line);
}
.video-frame__note{
  display:none;
}
.video-frame.is-playing .video-frame__play{display:none;}
.video-toast{
  position:absolute; bottom:14px; left:14px; right:14px;
  background:var(--black); color:var(--gold-light);
  font-family:var(--font-mono); font-size:12px;
  padding:10px 14px; border-radius:6px;
  border:1px solid var(--gold-line);
  opacity:0; transform:translateY(6px); pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}
.video-toast.is-visible{opacity:1; transform:translateY(0);}

/* ---------- Icon grid (Why Composto) ---------- */
.icon-grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:22px;
  margin-bottom:48px;
}
.icon-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 20px; text-align:left;
  box-shadow:var(--shadow-sm);
}
.icon-card__icon{
  width:46px; height:46px; border-radius:10px;
  background:var(--black); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.icon-card__icon svg{width:24px; height:24px;}
.icon-card h3{font-family:var(--font-display); font-size:16px; letter-spacing:.02em; text-transform:uppercase; margin-bottom:8px;}
.icon-card p{font-size:13.5px; color:var(--ink-soft); line-height:1.5;}

.stat-banner{
  display:flex; align-items:center; gap:20px;
  background:linear-gradient(90deg, var(--black), var(--black-3));
  border:1px solid var(--gold-line);
  border-radius:var(--radius);
  padding:22px 30px;
  color:var(--white);
}
.stat-banner__num{
  font-family:var(--font-mono); font-weight:700; font-size:38px; color:var(--gold-light);
  flex-shrink:0;
}
.stat-banner__text{font-family:var(--font-display); font-size:17px; letter-spacing:.03em; text-transform:uppercase;}

/* ---------- Advantages ---------- */
.badge-row{
  display:grid; grid-template-columns:repeat(5,1fr); gap:20px;
}
.badge-card{
  text-align:center; padding:28px 14px;
  border:1px solid var(--line); border-radius:var(--radius);
  background:var(--white);
  transition:border-color .2s ease, transform .2s ease;
}
.badge-card:hover{border-color:var(--gold); transform:translateY(-3px);}
.badge-card__icon{
  width:56px; height:56px; margin:0 auto 14px;
  border-radius:50%; border:1.5px solid var(--gold-line);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-deep);
}
.badge-card__icon svg{width:26px; height:26px;}
.badge-card h3{font-family:var(--font-display); font-size:14px; letter-spacing:.02em; text-transform:uppercase; line-height:1.35;}

/* ---------- Certifications ---------- */
.cert-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;}

.media-slot--cert {
  aspect-ratio: auto !important;
  height: 120px !important;
  width: 100% !important; /* Keep container full width */
  margin: 0 auto 16px;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.media-slot--cert img {
  object-fit: contain !important;
  width: auto !important; /* STOP STRETCHING THE IMAGE WIDTH */
  height: 100px !important; /* FORCE NORMAL BADGE SIZE */
  margin: 0 auto !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
}

.cert-card {
    background: transparent !important;
    border: none !important;
    padding: 16px !important;
}

.cert-card h3{font-family:var(--font-display); font-size:15px; letter-spacing:.02em; text-transform:uppercase; color:var(--white); margin-bottom:4px;}
.cert-card p{font-size:12.5px; color:#A9A695;}

/* ---------- Client logo wall ---------- */
.logo-wall{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap:20px;
  margin-bottom:16px;
}
.logo-chip{
  /* Removed border and white background for a cleaner look */
  background:transparent;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  min-height:80px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.logo-chip:hover{
  transform:translateY(-3px);
  /* Added a nice glow/shadow around the whole logo when hovered */
  filter: drop-shadow(0 8px 16px rgba(184,145,43,0.15));
}
.logo-chip img {
  max-width: 100%;
  width: 100% !important; /* Forces logo to fill the space */
  height: auto !important;
  object-fit: contain;
  max-height: 70px; /* Increased from 55px to make them bigger */
  border-radius: var(--radius-sm); /* Ensures corners match your design */
}
.logo-chip span{
  font-family:var(--font-display); font-size:13px; letter-spacing:.02em;
  text-transform:uppercase; color:var(--ink-soft); line-height:1.25;
}
.logo-wall__note{font-size:12px; color:var(--ink-faint); font-style:italic;}

/* ---------- OWC range blocks ---------- */
.owc-block{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:52px; align-items:center;
  padding:44px 0;
  border-bottom:1px solid var(--line);
}
.owc-block:last-of-type{border-bottom:none;}
.owc-block--reverse{direction:rtl;}
.owc-block--reverse > *{direction:ltr;}
.owc-block__plate{
  display:inline-block;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.1em;
  background:var(--black); color:var(--gold-light);
  padding:6px 14px; border-radius:4px; margin-bottom:14px;
}
.feature-list{margin:0 0 26px; display:flex; flex-direction:column; gap:10px;}
.feature-list li{
  position:relative; padding-left:22px; font-size:15px; color:var(--ink-soft);
}
.feature-list li::before{
  content:""; position:absolute; left:0; top:8px;
  width:9px; height:9px; border:2px solid var(--gold); border-radius:2px;
  transform:rotate(45deg);
}
.owc-range__footnote{
  text-align:center; margin-top:32px; font-size:14px; color:var(--ink-soft);
  border-top:1px dashed var(--line); padding-top:24px;
}

/* ---------- Direct Factory Contacts ---------- */
.contact-numbers{
  display:flex; flex-wrap:wrap; gap:18px; margin-bottom:44px;
}
.contact-number{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-mono); font-size:20px; font-weight:700;
  color:var(--gold-light);
  border:1px solid var(--gold-line); border-radius:var(--radius);
  padding:14px 22px;
  transition:background .2s ease;
}
.contact-number:hover{background:var(--black-2);}
.contact-number .icon{color:var(--gold-light);}

.factory-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.factory-card{
  background:var(--black-2); border:1px solid var(--line-dark); border-radius:var(--radius);
  padding:28px 24px;
}
.factory-card__icon{
  width:48px; height:48px; border-radius:10px;
  background:rgba(184,145,43,.12); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.factory-card__icon svg{width:26px; height:26px;}
.factory-card h3{font-family:var(--font-display); font-size:16px; letter-spacing:.02em; text-transform:uppercase; color:var(--white); margin-bottom:10px;}
.factory-card p{font-size:13.5px; color:#B9B6A6; line-height:1.55; margin-bottom:16px;}
.factory-card__note{color:#8f8c7c;}
.factory-card__phone{
  display:inline-block; font-family:var(--font-mono); font-weight:700; color:var(--gold-light);
  border-bottom:1px solid var(--gold-line); padding-bottom:2px;
}
.factory-card--whatsapp{border-color:rgba(37,211,102,.3);}
.factory-card--whatsapp .factory-card__icon{background:rgba(37,211,102,.14); color:#25D366;}

/* ---------- Testimonials ---------- */
.testimonial-track{
  display:grid; grid-auto-flow:column; grid-auto-columns:calc((100% - 2*24px)/3);
  gap:24px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding-bottom:8px; margin:0 -4px;
  scrollbar-width:none;
}
.testimonial-track::-webkit-scrollbar{display:none;}
.testimonial-card{
  scroll-snap-align:start;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 24px;
  box-shadow:var(--shadow-sm);
}

/* NEW FIX FOR TESTIMONIAL AVATARS */
.testimonial-card__avatar {
  width: 72px; /* Increased size to make AI portraits clear and premium */
  height: 72px; 
  border-radius: 50%;
  background: transparent; /* Removed solid black background */
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%; /* Ensures the image respects the circular shape */
}

.testimonial-card__quote{font-size:15.5px; color:var(--ink); line-height:1.55; margin-bottom:18px; min-height:66px;}
.testimonial-card__name{font-weight:700; font-size:14px;}
.testimonial-card__role{font-size:12.5px; color:var(--ink-faint); font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.04em;}
.track-dots{display:none; justify-content:center; gap:8px; margin-top:18px;}
.track-dots span{width:7px; height:7px; border-radius:50%; background:var(--line);}
.track-dots span.is-active{background:var(--gold);}

/* ---------- Video split (Shaktimaan) ---------- */
.video-split{display:grid; grid-template-columns:1.1fr .9fr; gap:52px; align-items:center;}

/* ---------- FAQ Accordion ---------- */
.accordion__item{border-bottom:1px solid var(--line);}
.accordion__trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:22px 4px; text-align:left;
  font-family:var(--font-body); font-weight:700; font-size:16px; color:var(--ink);
}
.accordion__chevron{width:20px; height:20px; color:var(--gold-deep); transition:transform .2s ease; flex-shrink:0;}
.accordion__trigger[aria-expanded="true"] .accordion__chevron{transform:rotate(180deg);}
.accordion__panel{
  max-height:0; overflow:hidden; transition:max-height .25s ease;
}
.accordion__panel p{padding:0 4px 22px; font-size:15px; color:var(--ink-soft); max-width:680px;}

/* ---------- Final CTA ---------- */
.final-cta{
  background:radial-gradient(1000px 500px at 50% -10%, rgba(184,145,43,.18), transparent 60%), var(--black);
  color:var(--white);
  padding:80px 0;
  text-align:center;
}
.final-cta__badge{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--gold-line); border-radius:30px;
  padding:8px 18px; margin-bottom:24px;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold-light);
}
.final-cta__badge svg{width:18px; height:18px;}
.final-cta__title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(28px,4.6vw,46px); text-transform:uppercase; line-height:1.15;
  max-width:800px; margin:0 auto 16px;
}
.final-cta__desc{color:#CFCCBC; max-width:520px; margin:0 auto 34px;}
.final-cta__actions{display:flex; justify-content:center; gap:18px; flex-wrap:wrap;}

/* ---------- Footer ---------- */
.site-footer{background:var(--black-2); color:#C9C6B6; padding:64px 0 0;}
.footer__grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08);
}
.footer__desc{font-size:13.5px; line-height:1.6; margin:16px 0 18px; max-width:280px;}
.footer__certs{display:flex; gap:10px;}
.footer__certs span{
  font-family:var(--font-mono); font-size:11px; border:1px solid var(--gold-line);
  color:var(--gold-light); padding:4px 10px; border-radius:4px;
}
.footer__col h4{
  font-family:var(--font-display); font-size:14px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--white); margin-bottom:18px;
}
.footer__col ul{display:flex; flex-direction:column; gap:11px;}
.footer__col a{font-size:13.5px; transition:color .15s ease;}
.footer__col a:hover{color:var(--gold-light);}
.footer__col p{font-size:13.5px; line-height:1.6; margin-bottom:12px;}
.footer__whatsapp{display:block; margin-top:10px; color:#25D366; font-weight:700;}
.footer__bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px;
  padding:22px 20px; font-size:12px; color:#847F6C;
}

/* ---------- Fixed contact buttons ---------- */
.fixed-contact{
  position:fixed; z-index:800;
  right:20px; bottom:20px;
  display:flex; flex-direction:column; gap:12px;
}
.fixed-contact__btn{
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,.28);
  transition:transform .15s ease;
}
.fixed-contact__btn:hover{transform:scale(1.06);}
.fixed-contact__btn svg{width:26px; height:26px;}
.fixed-contact__btn span{display:none;}
.fixed-contact__btn--whatsapp{background:#25D366; color:#08350f;}
.fixed-contact__btn--call{background:linear-gradient(180deg, var(--gold-light), var(--gold)); color:var(--black);}

/* ---------- Scroll hint (mobile) ---------- */
.scroll-hint{display:none;}

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

/* Tablet */
@media (max-width:1024px){
  .hero__inner{grid-template-columns:1fr; gap:40px;}
  .hero__media{order:-1; max-width:520px; margin:0 auto;}
  .icon-grid{grid-template-columns:repeat(3,1fr);}
  .badge-row{grid-template-columns:repeat(3,1fr);}
  .cert-grid{grid-template-columns:repeat(2,1fr);}
  .factory-grid{grid-template-columns:1fr; }
  .owc-block, .owc-block--reverse{grid-template-columns:1fr; direction:ltr;}
  .video-split{grid-template-columns:1fr;}
  .main-nav__list{gap:20px;}
}

/* Mobile */
@media (max-width:680px){
  body{font-size:15px;}
  .section{padding:56px 0;}
  .container{padding:0 18px;}

  .site-header__inner{height:66px;}
  
  /* Adjusted top position for mobile header height */
  .mobile-nav{top:66px;}
  
  .brand__name{font-size:18px;}
  .brand__mark{width:30px; height:30px;}
  .site-header__actions{display:none;}

  .hero{padding:36px 0 32px;}
  .hero__cta-row{flex-direction:column;}
  .hero__cta-row .btn{width:100%;}
  .hero__badge{position:static; margin-top:14px; max-width:none;}
  .hero__trust-strip{font-size:11px; gap:8px;}

  /* Popular models: swipeable row */
  .model-grid{
    display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:16px;
    margin:0 -18px; padding:4px 18px 12px;
    scrollbar-width:none;
  }
  .model-grid::-webkit-scrollbar{display:none;}
  .model-card{min-width:78%; scroll-snap-align:start;}
  .scroll-hint--mobile-only{display:block; text-align:center; font-family:var(--font-mono); font-size:11.5px; color:var(--ink-faint); margin-top:6px;}

  .cta-strip__inner{flex-direction:column; align-items:flex-start;}
  .cta-strip__actions .btn{width:100%;}
  .cta-strip__actions{flex-direction:column; width:100%;}

  .icon-grid{grid-template-columns:1fr 1fr; gap:14px;}
  .icon-card{padding:20px 16px;}
  .stat-banner{flex-direction:column; text-align:center; gap:10px;}

  .badge-row{grid-template-columns:1fr 1fr; gap:14px;}

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

  /* Fluid logo wall handles mobile automatically now, just slight gap adj */
  .logo-wall{grid-template-columns: repeat(2, 1fr); gap:14px;}
  .logo-chip{min-height:auto !important; padding:0 !important;}
  .logo-chip img {max-height: 60px !important;}

  .owc-block{gap:26px; padding:32px 0;}
  .contact-numbers{flex-direction:column;}
  .contact-number{font-size:17px; justify-content:center;}
  .factory-grid{gap:16px;}

  /* Testimonials: one per view, swipeable */
  .testimonial-track{grid-auto-columns:88%; gap:16px;}
  .track-dots{display:flex;}

  .final-cta__actions{flex-direction:column; width:100%;}
  .final-cta__actions .btn{width:100%;}

  .footer__grid{grid-template-columns:1fr 1fr; gap:32px 20px;}
  .footer__col--brand{grid-column:1/-1;}
  .footer__bottom{flex-direction:column; text-align:center;}

  /* Fixed contact -> bottom bar */
  .fixed-contact{
    left:0; right:0; bottom:0; top:auto;
    flex-direction:row; gap:0;
    padding-bottom:env(safe-area-inset-bottom, 0);
    background:var(--white);
    border-top:1px solid var(--line);
    box-shadow:0 -6px 20px rgba(0,0,0,.08);
  }
  .fixed-contact__btn{
    flex:1; width:auto; height:var(--fixed-bar-h); border-radius:0;
    gap:8px; box-shadow:none;
  }
  .fixed-contact__btn span{
    display:inline; font-family:var(--font-body); font-weight:700; font-size:14px;
  }
  .fixed-contact__btn svg{width:22px; height:22px;}
  .fixed-contact__btn:hover{transform:none;}

  body{padding-bottom:var(--fixed-bar-h);}
}

@media (max-width:400px){
  .icon-grid, .badge-row, .cert-grid, .footer__grid{grid-template-columns:1fr;}
}

/* ================================
   HEADER LOGO — FINAL
================================ */

.brand__logo {
    width: 160px;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 600px) {
    .brand__logo {
        width: 110px;
    }
}