/* =========================================================
   COMPOSTO — compostmachinemanufacturers.com
   Design tokens
   ========================================================= */
:root{
  --navy:        #0E2648;
  --navy-deep:   #050F22;
  --navy-mid:    #142F57;
  --gold:        #C89A3C;
  --gold-light:  #E4BE6B;
  --gold-dark:   #9C7522;
  --slate:       #5B6472;
  --ink:         #121A26;
  --bg:          #FFFFFF;
  --bg-alt:      #F6F5F1;
  --line:        #E7E4DB;
  --white:       #FFFFFF;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius: 4px;
  --radius-sm: 3px;
  --shadow-sm: 0 2px 14px rgba(5,15,34,0.07);
  --shadow-md: 0 16px 40px rgba(5,15,34,0.14);
  --shadow-lg: 0 30px 70px rgba(5,15,34,0.22);

  --container: 1180px;
}

/* =========================================================
   Reset
   ========================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.65;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.12; color:var(--navy-deep); letter-spacing:-0.02em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

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

/* Focus visibility */
a:focus-visible, button:focus-visible{
  outline:3px solid var(--orange);
  outline-offset:2px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 26px;
  clip-path:polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
  font-weight:600;
  font-size:14px;
  letter-spacing:0.01em;
  border:1.5px solid transparent;
  white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  position:relative;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn--lg{ padding:17px 32px; font-size:15px; }

.btn--primary{
  background:var(--navy);
  color:#fff;
}
.btn--primary:hover{ background:var(--navy-mid); }

.btn--cta{
  background:linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color:var(--navy-deep);
  font-weight:700;
  box-shadow:0 10px 26px rgba(200,154,60,0.35);
}
.btn--cta:hover{ box-shadow:0 14px 34px rgba(200,154,60,0.48); }

.btn--ghost{
  background:transparent;
  border-color:rgba(255,255,255,0.4);
  color:#fff;
}
.btn--ghost:hover{ background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.7); }

.btn--ghost-light{
  background:transparent;
  border-color:rgba(255,255,255,0.45);
  color:#fff;
}
.btn--ghost-light:hover{ background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.8); }

.btn--outline{
  background:transparent;
  border-color:var(--navy);
  color:var(--navy);
}
.btn--outline:hover{ background:var(--navy); color:#fff; }

.btn--whatsapp{
  background:#fff;
  border-color:var(--line);
  color:var(--ink);
  padding:11px 20px;
  font-size:13.5px;
  clip-path:none;
  border-radius:999px;
}
.btn--whatsapp:hover{ border-color:#25D366; }

/* =========================================================
   Top utility bar
   ========================================================= */
.top-bar{
  background:var(--navy-deep);
  color:#cfe0ff;
  font-size:13px;
}
.top-bar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:36px;
}
.top-bar__msg{ display:none; }
.top-bar__phone{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  color:#fff;
  margin-left:auto;
}
@media(min-width:720px){
  .top-bar__msg{ display:inline; }
  .top-bar__phone{ margin-left:0; }
}

/* =========================================================
   Header
   ========================================================= */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:100;
}
.site-header__inner{
  display:flex;
  align-items:center;
  gap:20px;
  height:72px;
}

.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand__logo{
  height:42px;
  width:auto;
  flex-shrink:0;
}
.brand__text{
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px;
  letter-spacing:0.01em;
  color:var(--navy-deep);
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.brand__sub{
  font-family:var(--font-body);
  font-weight:500;
  font-size:10px;
  color:var(--slate);
  letter-spacing:.05em;
  text-transform:uppercase;
}
.brand__text--light{ color:#fff; }
.brand__sub--light{ color:#8296b8; }

.main-nav{
  display:none;
  align-items:center;
  gap:34px;
}
.main-nav a{
  font-weight:600;
  font-size:14px;
  letter-spacing:0.01em;
  color:var(--slate);
  padding:6px 0;
  border-bottom:2px solid transparent;
}
.main-nav a:hover, .main-nav a.active{
  color:var(--navy);
  border-bottom-color:var(--gold);
}

.header-cta{ display:none; align-items:center; gap:10px; }

.nav-toggle{
  width:40px;height:40px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.nav-toggle span{
  width:20px; height:2px; background:var(--navy-deep); border-radius:2px;
}

@media(min-width:960px){
  .main-nav{ display:flex; }
  .header-cta{ display:flex; }
  .nav-toggle{ display:none; }
}

/* Mobile nav drawer */
.main-nav.open{
  display:flex;
  flex-direction:column;
  position:absolute;
  top:100%;
  left:0; right:0;
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:12px 20px 20px;
  gap:4px;
  box-shadow:var(--shadow-md);
}
.main-nav.open a{
  padding:12px 4px;
  border-bottom:1px solid var(--line);
  width:100%;
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position:relative;
  background:
    radial-gradient(900px 460px at 88% -14%, rgba(200,154,60,0.16), transparent 62%),
    radial-gradient(700px 400px at -5% 110%, rgba(14,38,72,0.05), transparent 60%),
    linear-gradient(180deg, #FCFCFA 0%, #F6F5F1 100%);
  padding:44px 0 64px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, var(--navy-deep) 0%, var(--gold) 50%, var(--navy-deep) 100%);
}
.hero__inner{
  display:grid;
  gap:28px;
}
.hero__media{ order:-1; }
.hero__copy{ order:0; display:flex; flex-direction:column; }
.hero__copy .eyebrow{ order:1; }
.hero__copy h1{ order:2; }
.hero__copy .hero__actions{ order:3; margin-bottom:26px; }
.hero__copy .hero__lead{ order:4; }
.hero__copy .hero__trust{ order:5; margin-top:22px; margin-bottom:0; }
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--gold-dark);
  background:rgba(200,154,60,0.12);
  border:1px solid rgba(200,154,60,0.28);
  padding:7px 16px 7px 12px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px;
  background:var(--gold);
  flex-shrink:0;
}
.eyebrow--dark{
  color:var(--navy);
  background:rgba(14,38,72,0.06);
  border-color:rgba(14,38,72,0.14);
}
.eyebrow--dark::before{ background:var(--navy); }

.hero h1{
  font-size:32px;
  font-weight:700;
  letter-spacing:-0.025em;
  margin-bottom:20px;
}
.hero h1 span{
  background:linear-gradient(100deg, var(--gold-dark), var(--gold-light) 60%, var(--gold-dark));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero__lead{
  font-size:16px;
  color:var(--slate);
  max-width:50ch;
  margin-bottom:26px;
}

.hero__trust{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin-bottom:30px;
}
.hero__trust li{
  display:flex;
  align-items:center;
  gap:9px;
  font-weight:600;
  font-size:14px;
  color:var(--navy-deep);
}
.hero__trust svg circle{ fill:var(--navy); }

.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.hero__actions .btn--ghost{
  border-color:var(--navy);
  color:var(--navy);
}
.hero__actions .btn--ghost:hover{ background:var(--navy); color:#fff; }

.hero__media{
  position:relative;
}
.hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(200,154,60,0.4);
  transform:translate(12px,12px);
  z-index:-1;
}
.hero__media img{
  box-shadow:var(--shadow-lg);
  width:100%;
  border:1px solid rgba(5,15,34,0.06);
}
.hero__badge{
  position:absolute;
  left:0;
  bottom:-16px;
  white-space:nowrap;
  background:linear-gradient(145deg, var(--navy-mid), var(--navy-deep));
  color:#fff;
  padding:10px 14px;
  box-shadow:var(--shadow-md);
  display:flex;
  flex-direction:column;
  min-width:110px;
  border-left:3px solid var(--gold);
}
.hero__badge strong{
  font-family:var(--font-display);
  font-size:16px;
  line-height:1.1;
  color:var(--gold-light);
}
.hero__badge .counter-suffix{
  font-size:16px;
  color:var(--gold-light);
  font-weight:700;
}
.hero__badge > span:last-child{
  display:block;
  font-size:9px;
  color:#a8b8d0;
  margin-top:2px;
  letter-spacing:0.01em;
  line-height:1.3;
}

@media(min-width:640px){
  .hero__badge{
    bottom:-20px;
    padding:16px 22px;
    min-width:158px;
  }
  .hero__badge strong{ font-size:23px; }
  .hero__badge .counter-suffix{ font-size:23px; }
  .hero__badge > span:last-child{ font-size:11px; margin-top:3px; }
}

@media(min-width:860px){
  .hero{ padding:76px 0 96px; }
  .hero__inner{
    grid-template-columns:1.05fr 0.95fr;
    align-items:center;
    gap:40px;
  }
  .hero__media{ order:0; }
  .hero__copy .eyebrow{ order:1; }
  .hero__copy h1{ order:2; }
  .hero__copy .hero__lead{ order:3; margin-bottom:26px; }
  .hero__copy .hero__trust{ order:4; margin-bottom:30px; margin-top:0; }
  .hero__copy .hero__actions{ order:5; margin-bottom:0; }
  .hero h1{ font-size:47px; }
  .hero__lead{ font-size:17.5px; }
}

/* =========================================================
   Capacity selector (signature element)
   ========================================================= */
.capacity-strip{
  padding:56px 0;
  background:#fff;
}
.capacity-strip__head{
  text-align:center;
  max-width:560px;
  margin:0 auto 30px;
}
.capacity-strip__head h2{
  font-size:26px;
  margin-bottom:8px;
}
.capacity-strip__head p{
  color:var(--slate);
  font-size:15px;
}

.capacity-tabs{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  margin-bottom:0;
}
.capacity-tabs .capacity-tab + .capacity-tab{ border-left:none; }
.capacity-tab{
  background:var(--bg-alt);
  border:1.5px solid var(--line);
  border-bottom:3px solid var(--line);
  padding:15px 10px;
  text-align:center;
  transition:all .15s ease;
  position:relative;
}
.capacity-tab__kg{
  display:block;
  font-family:var(--font-display);
  font-weight:700;
  font-size:18px;
  color:var(--navy-deep);
}
.capacity-tab__label{
  display:block;
  font-size:11px;
  color:var(--slate);
  margin-top:3px;
  letter-spacing:0.01em;
}
.capacity-tab__hint{
  display:block;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.03em;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin-top:8px;
  opacity:0.85;
  animation:hintBounce 1.8s ease-in-out infinite;
}
@keyframes hintBounce{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(2px); }
}
.capacity-tab:hover{ border-color:var(--gold); }
.capacity-tab.active{
  background:var(--navy);
  border-color:var(--navy);
  border-bottom-color:var(--gold);
}
.capacity-tab.active .capacity-tab__kg{ color:#fff; }
.capacity-tab.active .capacity-tab__label{ color:#a8b8d0; }
.capacity-tab.active .capacity-tab__hint{ display:none; }

@media(min-width:640px){
  .capacity-tabs{ grid-template-columns:repeat(5,1fr); }
  .capacity-tabs .capacity-tab{ border-left:1.5px solid var(--line); }
  .capacity-tabs .capacity-tab:first-child{ border-left:1.5px solid var(--line); }
}
@media(max-width:639px){
  .capacity-tabs{ grid-template-columns:repeat(2,1fr); }
  .capacity-tabs .capacity-tab:nth-child(odd){ border-left:1.5px solid var(--line); }
}

.capacity-panels{
  margin-top:0;
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-top:none;
  padding:30px 22px;
  position:relative;
}
.capacity-panels__pointer{
  position:absolute;
  top:-9px;
  width:16px; height:16px;
  background:var(--navy);
  border-left:1px solid var(--line);
  border-top:1px solid var(--line);
  transform:rotate(45deg);
  transition:left .2s ease;
  z-index:2;
  display:none;
}
@media(min-width:640px){
  .capacity-panels__pointer{ display:block; }
}
.capacity-panel{ display:none; animation:fadeIn .25s ease; }
.capacity-panel.active{ display:block; }
@keyframes fadeIn{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }

.capacity-panel__spec h3{
  font-size:22px;
  margin-bottom:4px;
}
.model-tag{
  color:var(--gold-dark);
  font-weight:600;
  font-size:13px;
  letter-spacing:0.01em;
  margin-bottom:18px;
}
.capacity-panel__spec ul{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin-bottom:24px;
}
.capacity-panel__spec li{
  font-size:14.5px;
  color:var(--ink);
  padding-left:17px;
  position:relative;
}
.capacity-panel__spec li::before{
  content:"";
  position:absolute; left:0; top:7px;
  width:7px; height:7px;
  background:var(--gold);
}
.capacity-panel__grid{
  display:grid;
  gap:24px;
}
.capacity-panel__photo{
  order:-1;
}
.capacity-panel__photo img{
  width:100%;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(5,15,34,0.06);
}
@media(min-width:760px){
  .capacity-panel__grid{
    grid-template-columns:1fr 0.9fr;
    align-items:center;
    gap:36px;
  }
  .capacity-panel__photo{ order:1; }
}
.capacity-panel__cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
  padding-top:16px;
  border-top:1px solid var(--line);
}
.price-from{
  font-weight:700;
  color:var(--navy);
  font-size:15px;
}

@media(min-width:760px){
  .capacity-panels{ padding:36px 40px; }
}

/* =========================================================
   Client trust strip
   ========================================================= */
.clients{
  background:var(--navy-deep);
  padding:36px 0;
  border-top:1px solid rgba(200,154,60,0.15);
  border-bottom:1px solid rgba(200,154,60,0.15);
}
.clients__label{
  text-align:center;
  color:#9fb3d6;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:24px;
}
.clients__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  align-items:stretch;
}
.clients__logo{
  background:#fff;
  border-radius:4px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:64px;
  transition:transform .15s ease;
}
.clients__logo:hover{ transform:translateY(-2px); }
.clients__logo img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:saturate(0.92);
}

@media(min-width:700px){
  .clients__grid{ grid-template-columns:repeat(6,1fr); gap:16px; }
  .clients__logo{ height:76px; padding:14px 16px; }
}

/* =========================================================
   Certifications
   ========================================================= */
.certs{
  background:var(--navy-deep);
  padding:0 0 40px;
}
.clients__label--dark{ margin-bottom:22px; }
.certs__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  max-width:760px;
  margin:0 auto;
}
.certs__logo{
  background:#fff;
  border-radius:4px;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:110px;
}
.certs__logo img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}
@media(min-width:640px){
  .certs__grid{ grid-template-columns:repeat(4,1fr); gap:20px; }
  .certs__logo{ height:130px; padding:18px; }
}

/* =========================================================
   Section head (shared)
   ========================================================= */
.section-head{
  text-align:center;
  max-width:560px;
  margin:0 auto 36px;
}
.section-head h2{ font-size:28px; margin-top:8px; }

/* =========================================================
   Process
   ========================================================= */
.process{ padding:44px 0; background:#fff; }
.process .section-head{ margin-bottom:24px; }
.process__steps{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(2,1fr);
}
.step{
  padding:18px 16px;
  border:1px solid var(--line);
  border-top:3px solid var(--navy);
  background:#fff;
  transition:box-shadow .2s ease, transform .2s ease, border-top-color .2s ease;
}
.step:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); border-top-color:var(--gold); }
.step__icon{
  font-family:var(--font-display);
  font-weight:700;
  font-size:12px;
  color:var(--gold-dark);
  background:rgba(200,154,60,0.12);
  border:1px solid rgba(200,154,60,0.3);
  width:28px; height:28px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:12px;
}
.step h3{ font-size:14.5px; margin-bottom:6px; }
.step p{ color:var(--slate); font-size:12.5px; line-height:1.5; }

@media(min-width:760px){
  .process{ padding:64px 0; }
  .process__steps{ grid-template-columns:repeat(4,1fr); gap:20px; }
  .step{ padding:28px 24px; }
  .step__icon{ width:34px; height:34px; font-size:13px; margin-bottom:18px; }
  .step h3{ font-size:17px; margin-bottom:9px; }
  .step p{ font-size:14px; }
}

/* =========================================================
   Why choose us
   ========================================================= */
.why{ background:var(--bg-alt); padding:40px 0; }
.why__grid{ display:grid; gap:24px; }
.why__copy{ text-align:center; }
.why__copy h2{ font-size:22px; margin:8px 0 10px; }
.why__copy p{ color:var(--slate); font-size:13.5px; max-width:48ch; line-height:1.6; margin-left:auto; margin-right:auto; }

.why__cards{ display:grid; gap:10px; }
.why-card{
  background:#fff;
  padding:12px 14px;
  border-left:3px solid var(--gold);
  box-shadow:var(--shadow-sm);
  display:flex;
  align-items:center;
  gap:12px;
}
.why-card__icon{ font-size:22px; flex-shrink:0; }
.why-card h3{ font-size:13px; color:var(--navy); margin-bottom:2px; }
.why-card p{ font-size:11.5px; color:var(--slate); line-height:1.4; margin:0; }

@media(min-width:900px){
  .why{ padding:64px 0; }
  .why__grid{ grid-template-columns:0.9fr 1.1fr; align-items:center; gap:36px; }
  .why__copy{ text-align:left; }
  .why__copy p{ margin-left:0; margin-right:0; }
  .why__copy h2{ font-size:28px; margin:10px 0 14px; }
  .why__copy p{ font-size:15px; }
  .why__cards{ gap:16px; }
  .why-card{ padding:22px; align-items:flex-start; }
  .why-card__icon{ font-size:26px; }
  .why-card h3{ font-size:16px; margin-bottom:8px; }
  .why-card p{ font-size:14px; }
}

/* =========================================================
   Video section
   ========================================================= */
.video-section{
  background:var(--bg-alt);
  padding:44px 0;
}
.video-section__inner{
  display:grid;
  gap:24px;
}
.video-section__copy{ text-align:center; }
.video-section__copy h2{
  font-size:24px;
  margin:10px 0 10px;
}
.video-section__copy p{
  color:var(--slate);
  font-size:14.5px;
  max-width:46ch;
  margin-left:auto;
  margin-right:auto;
}
.video-thumb{
  position:relative;
  border:none;
  padding:0;
  background:none;
  display:block;
  width:100%;
  cursor:pointer;
  box-shadow:var(--shadow-md);
}
.video-thumb img{ width:100%; display:block; }
.video-thumb__play{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:64px; height:64px;
  background:rgba(200,154,60,0.92);
  border:3px solid rgba(255,255,255,0.85);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, background .2s ease;
}
.video-thumb:hover .video-thumb__play{
  transform:translate(-50%,-50%) scale(1.1);
  background:var(--gold);
}

@media(min-width:860px){
  .video-section{ padding:64px 0; }
  .video-section__inner{
    grid-template-columns:0.85fr 1.15fr;
    align-items:center;
    gap:44px;
  }
  .video-section__copy{ text-align:left; }
  .video-section__copy p{ margin-left:0; margin-right:0; }
  .video-section__copy h2{ font-size:28px; }
}

/* =========================================================
   Projects
   ========================================================= */
.projects{ padding:44px 0; background:#fff; }
.projects__grid{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:8px;
  margin:0 -20px;
  padding-left:20px;
  padding-right:20px;
}
.projects__grid::-webkit-scrollbar{ height:5px; }
.projects__grid::-webkit-scrollbar-thumb{ background:var(--line); border-radius:3px; }
.project-card{
  border:1px solid var(--line);
  background:#fff;
  transition:box-shadow .2s ease, transform .2s ease;
  overflow:hidden;
  cursor:pointer;
  flex:0 0 78%;
  scroll-snap-align:start;
}
.project-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.project-card__img{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  background:var(--bg-alt);
}
.project-card__img img{
  width:100%; height:100%;
  object-fit:cover;
}
.project-card__play{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:42px; height:42px;
  background:rgba(14,38,72,0.75);
  border:2px solid rgba(255,255,255,0.8);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.project-card__body{ padding:18px; }
.project-card__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}
.project-card .tag{
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--gold-dark);
  background:rgba(200,154,60,0.12);
  padding:4px 10px;
}
.project-card .loc{
  font-size:12px;
  font-weight:600;
  color:var(--slate);
}
.project-card h3{ font-size:16px; margin-bottom:6px; }
.project-card p{ font-size:13px; color:var(--slate); }

.projects__scroll-hint{
  text-align:center;
  font-size:11.5px;
  color:var(--slate);
  margin-top:6px;
}

.projects__cta{ text-align:center; margin-top:28px; }

@media(min-width:640px){
  .projects__grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    overflow-x:visible;
    margin:0; padding:0;
  }
  .project-card{ flex:none; }
  .projects__scroll-hint{ display:none; }
}
@media(min-width:900px){
  .projects{ padding:64px 0; }
  .projects__grid{ grid-template-columns:repeat(3,1fr); gap:20px; }
  .project-card__body{ padding:22px; }
  .project-card h3{ font-size:18px; margin-bottom:8px; }
  .project-card p{ font-size:14px; }
}

/* =========================================================
   Project Lightbox
   ========================================================= */
.lightbox{
  position:fixed;
  inset:0;
  z-index:500;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.lightbox[hidden]{ display:none; }
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,15,34,0.92);
}
.lightbox__panel{
  position:relative;
  background:#fff;
  width:100%;
  max-width:820px;
  max-height:92vh;
  overflow-y:auto;
  z-index:1;
}
.lightbox__close{
  position:absolute;
  top:10px; right:10px;
  width:36px; height:36px;
  background:rgba(14,38,72,0.85);
  border:none;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  cursor:pointer;
}
.lightbox__stage{
  width:100%;
  aspect-ratio:16/10;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox__stage img, .lightbox__stage video{
  width:100%;
  height:100%;
  object-fit:contain;
}
.lightbox__stage iframe{
  width:100%;
  height:100%;
  border:0;
}
.lightbox__thumbs{
  display:flex;
  gap:8px;
  padding:12px;
  overflow-x:auto;
  background:var(--bg-alt);
}
.lightbox__thumb{
  flex-shrink:0;
  width:64px; height:48px;
  border:2px solid transparent;
  background-size:cover;
  background-position:center;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:14px;
}
.lightbox__thumb.active{ border-color:var(--gold); }
.lightbox__info{ padding:16px 18px 20px; }
.lightbox__info h3{ font-size:18px; margin-bottom:4px; color:var(--navy-deep); font-family:var(--font-display); font-weight:700; }
.lightbox__info p{ font-size:13.5px; color:var(--slate); }

/* =========================================================
   Serving network
   ========================================================= */
.network{ background:var(--bg-alt); padding:40px 0; }
.network__chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  max-width:820px;
  margin:0 auto;
}
.network__chips a,
.network__chips span{
  background:#fff;
  border:1px solid var(--line);
  padding:8px 16px;
  border-radius:999px;
  font-weight:600;
  font-size:12.5px;
  color:var(--navy);
  transition:all .15s ease;
}
.network__chips a:hover{ background:var(--navy); color:var(--gold-light); border-color:var(--navy); }

@media(min-width:760px){
  .network{ padding:52px 0; }
  .network__chips a{ font-size:13.5px; padding:9px 18px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{ padding:64px 0; background:#fff; }
.faq__list{ max-width:760px; margin:0 auto; }
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item__q{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:20px 4px;
  font-weight:600;
  font-size:15.5px;
  color:var(--navy-deep);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.faq-item__icon{
  flex-shrink:0;
  width:22px; height:22px;
  border:1.5px solid var(--gold);
  position:relative;
}
.faq-item__icon::before, .faq-item__icon::after{
  content:"";
  position:absolute;
  background:var(--gold);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
}
.faq-item__icon::before{ width:10px; height:2px; }
.faq-item__icon::after{ width:2px; height:10px; transition:transform .2s ease; }
.faq-item.active .faq-item__icon::after{ transform:translate(-50%,-50%) rotate(90deg) scale(0); }

.faq-item__a{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-item.active .faq-item__a{ max-height:300px; }
.faq-item__a p{
  padding:0 4px 20px;
  color:var(--slate);
  font-size:14.5px;
}

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta{
  position:relative;
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(200,154,60,0.14), transparent 60%),
    linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  padding:64px 0;
  text-align:center;
}
.final-cta::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}
.final-cta h2{
  color:#fff;
  font-size:27px;
  margin-bottom:13px;
}
.final-cta p{
  color:#a8b8d0;
  font-size:15.5px;
  margin-bottom:30px;
}
.final-cta__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

@media(min-width:640px){
  .final-cta h2{ font-size:32px; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background:var(--navy-deep); color:#a8b8d0; padding:56px 0 0; }
.footer__grid{
  display:grid;
  gap:32px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer__brand p{ font-size:13px; margin-top:14px; line-height:1.7; }
.footer__col h4{
  color:#fff;
  font-size:14px;
  margin-bottom:14px;
  font-family:var(--font-display);
}
.footer__col p{ font-size:13.5px; margin-bottom:10px; line-height:1.6; }
.footer__col a:hover{ color:#fff; }

.footer__map{
  width:100%;
  height:220px;
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,0.08);
  filter:grayscale(0.3) invert(0.92) contrast(0.9);
}
.footer__map iframe{ display:block; }

.footer__bottom{
  padding:20px 0;
  font-size:12.5px;
  text-align:center;
  color:#6f83a8;
}

@media(min-width:760px){
  .footer__grid{ grid-template-columns:1.3fr 1fr 1fr 1fr; }
  .footer__map{ height:280px; margin-top:40px; }
}

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.float-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px; height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,0.45), 0 0 0 4px rgba(37,211,102,0.15);
  z-index:200;
  transition:transform .15s ease;
  animation:pulseWa 2.6s ease-in-out infinite;
}
.float-whatsapp:hover{ transform:scale(1.08); animation:none; }
@keyframes pulseWa{
  0%, 100%{ box-shadow:0 8px 24px rgba(37,211,102,0.45), 0 0 0 4px rgba(37,211,102,0.15); }
  50%{ box-shadow:0 8px 24px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* =========================================================
   Machine Finder (quiz + calculator)
   ========================================================= */
.finder{ padding:44px 0; background:#fff; }
.finder__card{
  background:linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border:1px solid rgba(200,154,60,0.25);
  padding:32px 22px;
  position:relative;
  overflow:hidden;
}
.finder__card::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}
.finder__intro{ text-align:center; max-width:520px; margin:0 auto; }
.finder__intro .eyebrow{ color:var(--gold-light); background:rgba(200,154,60,0.15); border-color:rgba(200,154,60,0.35); }
.finder__intro h2{ color:#fff; font-size:24px; margin:12px 0 12px; }
.finder__intro p{ color:#a8b8d0; font-size:14.5px; margin-bottom:24px; }

.finder__quiz{ max-width:560px; margin:0 auto; }
.finder__progress{ margin-bottom:26px; }
.finder__step-label{
  display:block;
  color:#a8b8d0;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.03em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.finder__progress-bar{
  height:4px;
  background:rgba(255,255,255,0.12);
  overflow:hidden;
}
.finder__progress-fill{
  height:100%;
  width:50%;
  background:var(--gold);
  transition:width .3s ease;
}
.finder__question{ display:none; }
.finder__question.active{ display:block; animation:fadeIn .25s ease; }
.finder__question h3{
  color:#fff;
  font-size:19px;
  margin-bottom:20px;
  text-align:center;
}
.finder__options{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.finder__opt{
  background:rgba(255,255,255,0.06);
  border:1.5px solid rgba(255,255,255,0.15);
  color:#fff;
  padding:20px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  font-size:13.5px;
  font-weight:600;
  transition:all .15s ease;
}
.finder__opt-icon{ font-size:26px; line-height:1; }
.finder__opt span:last-child{ line-height:1.3; }
.finder__opt:hover, .finder__opt.selected{
  background:rgba(200,154,60,0.18);
  border-color:var(--gold);
}

.finder__slider-wrap{ padding:10px 6px 0; }
.finder__slider{
  width:100%;
  -webkit-appearance:none;
  height:6px;
  background:rgba(255,255,255,0.15);
  outline:none;
  margin-bottom:12px;
}
.finder__slider::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--gold);
  border:3px solid #fff;
  cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,0.3);
}
.finder__slider::-moz-range-thumb{
  width:22px; height:22px;
  border-radius:50%;
  background:var(--gold);
  border:3px solid #fff;
  cursor:pointer;
}
.finder__slider-labels{
  display:flex;
  justify-content:space-between;
  font-size:10.5px;
  color:#7c8fb0;
  margin-bottom:22px;
}
.finder__estimate{
  text-align:center;
  color:#e4e8ee;
  font-size:14.5px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  padding:14px;
}
.finder__estimate strong{ color:var(--gold-light); }

.finder__result{ max-width:640px; margin:0 auto; text-align:center; }
.finder__result .eyebrow{ color:var(--gold-light); background:rgba(200,154,60,0.15); border-color:rgba(200,154,60,0.35); margin-bottom:16px; }
.finder__result-grid{
  background:#fff;
  padding:22px;
  display:grid;
  gap:20px;
  text-align:left;
}
.finder__result-grid img{
  width:100%;
  box-shadow:var(--shadow-sm);
}
.finder__result-copy h3{ font-size:21px; margin-bottom:8px; }
.finder__result-copy p{ color:var(--slate); font-size:14px; margin-bottom:18px; }
.finder__result-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
  padding-top:16px;
  border-top:1px solid var(--line);
  margin-bottom:16px;
}
.finder__restart{
  background:none;
  border:none;
  color:var(--slate);
  font-size:13px;
  font-weight:600;
  text-decoration:underline;
  padding:0;
}

@media(min-width:640px){
  .finder{ padding:64px 0; }
  .finder__card{ padding:48px 50px; }
  .finder__options{ grid-template-columns:repeat(4,1fr); }
  .finder__result-grid{ grid-template-columns:0.9fr 1.1fr; align-items:center; padding:30px; }
}

/* =========================================================
   Compare models table
   ========================================================= */
.compare-toggle-wrap{ text-align:center; margin-top:30px; }
.compare-table-wrap{ margin-top:26px; animation:fadeIn .3s ease; }
.compare-table-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
.compare-table{
  width:100%;
  min-width:640px;
  border-collapse:collapse;
  background:#fff;
}
.compare-table th, .compare-table td{
  padding:13px 16px;
  text-align:left;
  border-bottom:1px solid var(--line);
  font-size:13.5px;
}
.compare-table thead th{
  background:var(--navy);
  color:#fff;
  font-family:var(--font-display);
  font-weight:600;
  font-size:13.5px;
}
.compare-table thead th:first-child{ color:#a8b8d0; }
.compare-table tbody td:first-child{
  font-weight:600;
  color:var(--navy-deep);
  background:var(--bg-alt);
}
.compare-table__cta-row td{ border-bottom:none; padding-top:16px; }
.compare-table__cta-row a{
  color:var(--gold-dark);
  font-weight:700;
  font-size:13px;
}
.compare-table__hint{
  text-align:center;
  font-size:11.5px;
  color:var(--slate);
  margin-top:10px;
}
@media(min-width:860px){
  .compare-table{ min-width:100%; }
  .compare-table__hint{ display:none; }
}

/* =========================================================
   Before / After slider
   ========================================================= */
.transform{ padding:40px 0; background:var(--bg-alt); }
.transform__hint{
  text-align:center;
  color:var(--slate);
  font-size:13px;
  margin-top:6px;
}
.ba-slider{
  position:relative;
  width:100%;
  aspect-ratio:16/11;
  max-height:420px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  user-select:none;
}
@media(min-width:640px){
  .ba-slider{ aspect-ratio:16/9; max-height:400px; }
}

/* Before = always full-width base layer, content pinned to left third */
.ba-slider__panel--before{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, #3A3226, #221D16);
}
.ba-slider__panel--before .ba-visual{
  position:absolute;
  left:4%;
  top:50%;
  transform:translateY(-50%);
  width:15%;
}
/* After = overlay clipped from the right, content pinned to right third */
.ba-slider__panel--after{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, #E7F2E0, #C8E0B8);
  clip-path:inset(0 50% 0 0);
}
.ba-slider__panel--after .ba-visual{
  position:absolute;
  right:4%;
  top:50%;
  transform:translateY(-50%);
  width:15%;
}
@media(min-width:640px){
  .ba-slider__panel--before .ba-visual{ left:3%; width:19%; }
  .ba-slider__panel--after .ba-visual{ right:3%; width:19%; }
}

.ba-tag{
  position:absolute;
  top:14px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:11px;
  letter-spacing:0.06em;
  padding:5px 12px;
  border-radius:999px;
}
.ba-tag--before{ left:14px; background:rgba(255,255,255,0.15); color:#F0E4C8; }
.ba-tag--after{ right:14px; background:rgba(46,92,31,0.15); color:#2E5C1F; }

.ba-visual{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-align:center;
}
.ba-visual__icon{ font-size:26px; }
.ba-visual__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:11px;
  line-height:1.25;
}
.ba-visual--after .ba-visual__title{ color:#2E5C1F; }
.ba-visual--after .ba-visual__sub{ color:#4A6B3C; font-size:9.5px; }
.ba-visual--before .ba-visual__title{ color:#F0E4C8; }
.ba-visual--before .ba-visual__sub{ color:#B8A888; font-size:9.5px; }

@media(min-width:640px){
  .ba-visual__icon{ font-size:44px; }
  .ba-visual__title{ font-size:17px; }
  .ba-visual--after .ba-visual__sub, .ba-visual--before .ba-visual__sub{ font-size:11.5px; }
}

.ba-slider__input{
  position:absolute;
  inset:0;
  width:100%; height:100%;
  opacity:0;
  cursor:ew-resize;
  margin:0;
  z-index:3;
}
.ba-slider__handle{
  position:absolute;
  top:50%;
  left:50%;
  width:44px; height:44px;
  margin-left:-22px;
  margin-top:-22px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,0.3);
  pointer-events:none;
  z-index:2;
}
.ba-slider__handle::before, .ba-slider__handle::after{
  content:"";
  position:absolute;
  width:2px;
  background:#fff;
  top:-9999px; bottom:-9999px;
  left:50%;
  box-shadow:0 0 0 1px rgba(0,0,0,0.06);
}

@media(min-width:760px){
  .transform{ padding:64px 0; }
  .ba-visual__icon{ font-size:70px; }
  .ba-visual__title{ font-size:24px; }
}

/* =========================================================
   FAQ search
   ========================================================= */
.faq__search-wrap{
  position:relative;
  max-width:520px;
  margin:0 auto 30px;
}
.faq__search-icon{ position:absolute; left:16px; top:50%; transform:translateY(-50%); }
.faq__search{
  width:100%;
  padding:13px 16px 13px 44px;
  border:1.5px solid var(--line);
  font-size:14px;
  font-family:var(--font-body);
  background:var(--bg-alt);
}
.faq__search:focus{ outline:none; border-color:var(--gold); background:#fff; }
.faq__no-results{
  text-align:center;
  color:var(--slate);
  font-size:14px;
  margin-bottom:20px;
}
.faq__no-results a{ color:var(--gold-dark); font-weight:600; }
.faq-item.faq-hidden{ display:none; }
.faq-item mark{ background:rgba(200,154,60,0.35); color:inherit; }

/* =========================================================
   Brochure download (gated)
   ========================================================= */
.brochure{
  background:var(--bg-alt);
  padding:48px 0;
  text-align:center;
}
.brochure__icon{
  width:56px; height:56px;
  background:#fff;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
}
.brochure__copy h2{ font-size:23px; margin-bottom:10px; }
.brochure__copy p{ color:var(--slate); font-size:14.5px; max-width:440px; margin:0 auto 26px; }
.brochure__form{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:420px;
  margin:0 auto;
}
.brochure__input{
  padding:14px 16px;
  border:1.5px solid var(--line);
  font-size:14.5px;
  font-family:var(--font-body);
  background:#fff;
}
.brochure__input:focus{ outline:none; border-color:var(--gold); }
.brochure__note{
  font-size:12px;
  color:var(--slate);
  margin-top:14px;
}
@media(min-width:560px){
  .brochure__form{ flex-direction:row; }
  .brochure__input{ flex:1; }
}

/* =========================================================
   Scroll reveal (process steps)
   ========================================================= */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .5s ease, transform .5s ease;
}
.reveal.revealed{
  opacity:1;
  transform:translateY(0);
}

/* =========================================================
   Counter suffix helper
   ========================================================= */
.counter-suffix{ font-family:var(--font-display); }

/* =========================================================
   v10 — layout & alignment fixes
   ========================================================= */

/* ---------- Brand logo (header) ---------- */
.brand__logo{
  height:32px;
  width:auto;
  max-width:132px;
  object-fit:contain;
  flex-shrink:0;
}
@media(min-width:900px){
  .brand__logo{ height:40px; max-width:170px; }
}

/* ---------- WhatsApp hero button (no clipped corner) ---------- */
.btn--wa{
  clip-path:none;
  border-radius:6px;
  background:#fff;
  border:1.5px solid #25D366;
  color:#0E2648;
  font-weight:650;
  box-shadow:0 6px 18px rgba(37,211,102,0.18);
  gap:11px;
}
.btn--wa .btn__wa-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px; height:26px;
  border-radius:50%;
  background:#25D366;
  color:#25D366;
  flex-shrink:0;
}
.btn--wa:hover{
  background:#25D366;
  border-color:#1FAF52;
  color:#fff;
  box-shadow:0 12px 28px rgba(37,211,102,0.34);
}
.btn--wa:hover .btn__wa-icon{ background:#fff; color:#fff; }
.btn--wa:hover .btn__wa-icon svg path:first-child{ fill:#25D366; }
.btn--wa:hover .btn__wa-icon svg path:last-child{ fill:#fff; }

/* ---------- Capacity tabs: now 6 models ---------- */
@media(min-width:640px){
  .capacity-tabs{ grid-template-columns:repeat(3,1fr); }
}
@media(min-width:960px){
  .capacity-tabs{ grid-template-columns:repeat(6,1fr); }
}

/* ---------- Model photos: uniform 4:3, edge-to-edge (no white bars) ----------
   The model PNGs are now normalised to exactly 4:3 with their own background
   extended, so the photo fills the frame completely. */
.capacity-panel__photo{
  display:block;
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:0;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  min-height:0;
  aspect-ratio:4/3;
  width:100%;
}
.capacity-panel__photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  box-shadow:none;
  border:0;
  border-radius:0;
}

/* ---------- Certifications: dark plaques, no double frame ----------
   The cert PNGs already contain a dark card with the badge + label baked in,
   so wrapping them in a white box created a frame-inside-a-frame. The tile is
   now transparent and the plaque fills it edge to edge. */
.certs__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  max-width:760px;
  margin:0 auto;
  width:100%;
}
.certs__logo{
  min-width:0;
  overflow:hidden;
  background:#0D0D0B;
  border:1px solid rgba(200,154,60,0.42);
  border-radius:6px;
  padding:0;
  height:auto;
  aspect-ratio:244/208;
  display:block;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.certs__logo:hover{
  transform:translateY(-3px);
  border-color:rgba(200,154,60,0.85);
  box-shadow:0 14px 30px rgba(0,0,0,0.45);
}
.certs__logo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
@media(min-width:560px){
  .certs__grid{ grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; max-width:820px; }
}
@media(min-width:900px){
  .certs__grid{ gap:18px; }
}

/* ---------- Client logos: light band, no double frames ----------
   Logos are tightly trimmed (no baked frame, no padded canvas), so
   object-fit:contain lets each one fill its tile properly. */
.clients--light{
  background:var(--bg-alt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:40px 0 44px;
  overflow:hidden;
}
.clients--light .clients__label{ color:var(--slate); }
.clients--light .clients__label .counter{ color:var(--gold-dark); font-weight:700; }
.clients--light .clients__grid{
  display:flex;              /* flex, so a partial last row centres instead of hanging left */
  flex-wrap:wrap;
  justify-content:center;
  gap:9px;
  width:100%;
}
.clients--light .clients__logo{
  min-width:0;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:5px;
  padding:9px 10px;
  height:62px;
  flex:0 1 calc((100% - 18px)/3);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 1px 3px rgba(5,15,34,0.04);
}
.clients--light .clients__logo img{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  filter:saturate(0.92);
  transition:filter .18s ease;
}
.clients--light .clients__logo:hover{ border-color:rgba(200,154,60,0.55); }
.clients--light .clients__logo:hover img{ filter:saturate(1.05); }
@media(min-width:480px){
  .clients--light .clients__grid{ gap:10px; }
  .clients--light .clients__logo{ height:66px; flex-basis:calc((100% - 30px)/4); }
}
@media(min-width:760px){
  .clients--light .clients__grid{ gap:12px; }
  .clients--light .clients__logo{ height:74px; padding:10px 12px; flex-basis:calc((100% - 48px)/5); }
}
@media(min-width:1000px){
  .clients--light .clients__grid{ gap:14px; }
  .clients--light .clients__logo{ height:80px; padding:11px 14px; flex-basis:calc((100% - 70px)/6); }
}

/* ---------- Projects tagline ---------- */
.projects__tagline{
  text-align:center;
  max-width:64ch;
  margin:22px auto 0;
  color:var(--slate);
  font-size:14.5px;
  line-height:1.7;
}
.projects__scroll-hint{ margin-top:10px; }

/* ---------- Footer: logo, office card, inline map ---------- */
.footer__logo{
  height:40px;
  width:auto;
  max-width:170px;
  object-fit:contain;
  margin-bottom:12px;
  display:block;
}
.footer__office-card{
  background:rgba(255,255,255,0.045);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:8px;
  overflow:hidden;
  margin-bottom:16px;
}
.footer__office-copy{ padding:14px 16px 12px; }
.footer__office-copy p{ margin:0 0 10px; }
.footer__directions{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12.5px;
  font-weight:600;
  color:var(--gold-light);
  border:1px solid rgba(200,154,60,0.45);
  border-radius:999px;
  padding:6px 13px;
  transition:background .16s ease, color .16s ease;
}
.footer__directions:hover{ background:var(--gold); color:var(--navy-deep); border-color:var(--gold); }
.footer__office-map{
  height:160px;
  border-top:1px solid rgba(255,255,255,0.10);
  filter:grayscale(0.18);
}
.footer__office-map iframe{ display:block; height:100%; width:100%; border:0; }
.footer__mfg{ margin:0; }
@media(min-width:900px){
  .footer__col--offices{ grid-column:span 2; }
  .footer__office-card{ display:grid; grid-template-columns:1fr 1fr; margin-bottom:14px; }
  .footer__office-map{ height:100%; min-height:170px; border-top:0; border-left:1px solid rgba(255,255,255,0.10); }
}

/* network chips rendered as non-links (city pages not built yet) */
.network__chips span{ cursor:default; }

/* ---------- v11: global horizontal-overflow guards ---------- */
html, body{ overflow-x:hidden; max-width:100%; }
.container{ min-width:0; }
.clients__grid, .certs__grid{ min-width:0; }
.clients__logo, .certs__logo{ box-sizing:border-box; }
img{ max-width:100%; }

/* ---------- v12: certs section spacing ---------- */
.certs{ padding:44px 0 44px; }
.certs .clients__label--dark{ margin-bottom:20px; }
@media(min-width:760px){
  .certs{ padding:56px 0 56px; }
  .certs .clients__label--dark{ margin-bottom:26px; }
}
.lightbox__missing{ color:#9fb3d6; font-size:14px; text-align:center; padding:40px 20px; }

/* ---------- v13: hero badge number stays on one line ---------- */
.hero__badge{ display:block; }                 /* was column-flex, which pushed the "+" onto its own line */
.hero__badge strong,
.hero__badge .counter-suffix{
  display:inline;
  vertical-align:baseline;
}
.hero__badge > span:last-child{
  display:block;
  white-space:normal;
}

/* ---------- v13: drop the global overflow-x guard ----------
   It is no longer needed (grid tracks use minmax(0,1fr)) and
   overflow-x:hidden on html/body breaks position:sticky on the header. */
html, body{ overflow-x:visible; max-width:none; }

/* =========================================================
   v14 — Before/After slider: photo mode + drag affordance
   ========================================================= */

/* Photo mode: switches on automatically once assets/img/transform/
   before.* and after.* exist on the server. */
.ba-slider__panel--before,
.ba-slider__panel--after{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.ba-slider--photo .ba-visual{ display:none; }
.ba-slider--photo .ba-tag--before{ background:rgba(5,15,34,0.62); color:#fff; backdrop-filter:blur(3px); }
.ba-slider--photo .ba-tag--after{ background:rgba(46,92,31,0.82); color:#fff; backdrop-filter:blur(3px); }

/* Seam between the two panels */
.ba-slider__handle::before,
.ba-slider__handle::after{ box-shadow:0 0 0 1px rgba(0,0,0,0.18); }

/* Handle: gold ring that pulses until the visitor interacts */
.ba-slider__handle{
  border:2px solid var(--gold);
  transition:transform .18s ease;
}
.ba-slider__pulse{
  position:absolute;
  inset:-2px;
  border-radius:50%;
  border:2px solid var(--gold);
  animation:baPulse 1.9s ease-out infinite;
  pointer-events:none;
}
@keyframes baPulse{
  0%   { transform:scale(1);    opacity:0.85; }
  70%  { transform:scale(1.85); opacity:0; }
  100% { transform:scale(1.85); opacity:0; }
}

/* "Drag to reveal" cue, pinned to the handle */
.ba-slider__cue{
  position:absolute;
  top:calc(50% + 34px);
  left:88%;
  transform:translateX(-50%);
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  background:rgba(5,15,34,0.82);
  color:#fff;
  font-family:var(--font-display);
  font-weight:600;
  font-size:11.5px;
  letter-spacing:0.03em;
  padding:6px 12px;
  border-radius:999px;
  z-index:2;
  pointer-events:none;
  box-shadow:0 4px 14px rgba(0,0,0,0.28);
}
.ba-slider__cue-arrow{
  display:inline-block;
  font-size:14px;
  line-height:1;
  animation:baArrow 1.5s ease-in-out infinite;
}
@keyframes baArrow{
  0%,100% { transform:translateX(0);    opacity:0.75; }
  50%     { transform:translateX(-5px); opacity:1; }
}
@media(min-width:640px){
  .ba-slider__cue{ font-size:12.5px; padding:7px 14px; top:calc(50% + 38px); }
}

/* Once the visitor drags, the training wheels come off */
.ba-slider--touched .ba-slider__cue,
.ba-slider--touched .ba-slider__pulse{
  opacity:0;
  transition:opacity .35s ease;
}
.ba-slider--touched .ba-slider__pulse{ animation:none; }

@media (prefers-reduced-motion: reduce){
  .ba-slider__pulse, .ba-slider__cue-arrow{ animation:none; }
}

/* v14b: keep the cue inside the frame when the handle sits near an edge.
   The cue is anchored to the RIGHT of its left offset instead of centred,
   and JS clamps that offset, so it can never bleed off the panel. */
.ba-slider__cue{
  transform:translateX(-100%);
  margin-left:-14px;
  max-width:72%;
}
@media(min-width:640px){ .ba-slider__cue{ margin-left:-18px; } }
/* tags live on the slider, above both panels, so the clipped AFTER panel
   can no longer cut its own label off */
.ba-tag{ z-index:2; }
