@font-face{
  font-family:"Assistant";
  src:url("../fonts/assistant-latin-variable.woff2") format("woff2-variations");
  font-style:normal;
  font-weight:200 800;
  font-display:swap;
}

:root{
  --red:#e30613;
  --red-dark:#b9000b;
  --ink:#15171c;
  --muted:#6f737c;
  --line:#e8e8ea;
  --paper:#ffffff;
  --bg:#f6f6f5;
  --shadow:0 18px 45px rgba(20,22,28,.10);
  --shadow-soft:0 10px 28px rgba(20,22,28,.08);
  --radius:18px;
  --max:1450px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Assistant", Arial, sans-serif;
  color:var(--ink);
  background:radial-gradient(circle at top center,#fff 0,#f8f8f7 42%,#f2f2f1 100%);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
.container{width:min(var(--max),calc(100% - 96px));margin-inline:auto}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.08);
  box-shadow:0 5px 22px rgba(0,0,0,.05);
}
.header-inner{
  height:104px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:22px;
}
.brand{
  justify-self:center;
  display:block;
  line-height:0;
}
.brand-logo{
  width:218px;
  height:auto;
}
.nav-left{display:flex;align-items:center;gap:34px;font-weight:800;font-size:15px;text-transform:uppercase;letter-spacing:.02em}
.nav-left a{position:relative;padding:38px 0;color:#111}
.nav-left a.active{color:var(--red)}
.nav-left a.active:after{content:"";position:absolute;left:50%;bottom:25px;width:38px;height:3px;background:var(--red);transform:translateX(-50%)}
.caret{color:var(--red);font-size:18px;margin-left:8px;vertical-align:-1px}
.header-cta{justify-self:end}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:50px;padding:0 28px;border-radius:999px;border:1px solid transparent;
  font-weight:850;letter-spacing:.02em;cursor:pointer;transition:.2s ease;
}
.btn-red{background:var(--red);color:#fff;box-shadow:0 16px 28px rgba(227,6,19,.22)}
.btn-red:hover{background:var(--red-dark);transform:translateY(-1px)}
.btn-white{background:#fff;color:var(--red);border-color:var(--red);box-shadow:0 8px 18px rgba(227,6,19,.10)}
.btn-white:hover{background:#fff5f5}
.btn-square{border-radius:10px}
.icon{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2.1;stroke-linecap:round;stroke-linejoin:round}
.mobile-menu{display:none;justify-self:start;border:0;background:transparent;font-weight:900;text-transform:uppercase;color:#111}

.page-hero{padding:52px 0 34px;text-align:center}
.logo-large{
  width:min(470px,90vw);height:auto;margin:0 auto 18px;
}
.page-title{margin:0;text-align:center;font-size:48px;letter-spacing:.22em;text-transform:uppercase;line-height:1.1;font-weight:900}
.title-rule{width:54px;height:3px;background:var(--red);margin:18px auto 16px;border-radius:999px}
.subtitle{margin:0 auto;color:var(--muted);font-size:22px;max-width:850px}.home-subtitle{font-size:20px}
.home-headline{font-size:36px;letter-spacing:-.02em;text-transform:none;font-weight:650;margin-top:10px}

.carousel-wrap{position:relative;margin:4px auto 34px;width:min(100%,1510px)}
.product-band{
  overflow:hidden;position:relative;background:#fff;border-radius:22px;border:1px solid rgba(0,0,0,.05);
  box-shadow:var(--shadow);height:210px;display:flex;align-items:center;
}
.product-band:before,.product-band:after{content:"";position:absolute;top:0;width:100px;height:100%;z-index:3;pointer-events:none}
.product-band:before{left:0;background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,0) 100%)}
.product-band:after{right:0;background:linear-gradient(-90deg,#fff 0%,rgba(255,255,255,0) 100%)}
.product-track{display:flex;align-items:center;gap:46px;min-width:max-content;animation:slide-right 24s linear infinite;padding:0 48px}
.product-band:hover .product-track{animation-play-state:paused}
.product-track img{height:116px;max-width:230px;object-fit:contain;filter:drop-shadow(0 14px 12px rgba(0,0,0,.10))}
.product-track img.tall{height:168px}.product-track img.wide{height:100px;max-width:260px}
@keyframes slide-right{from{transform:translateX(-50%)}to{transform:translateX(0)}}
.carousel-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:58px;height:58px;border-radius:999px;
  border:0;background:#fff;color:var(--red);box-shadow:0 10px 26px rgba(0,0,0,.15);font-size:45px;line-height:1;display:grid;place-items:center;
}
.carousel-arrow.left{left:-28px}.carousel-arrow.right{right:-28px}

.main-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin:0 auto 44px;width:min(100%,1450px)}
.main-card,.sector-card,.product-card,.feature-card,.gallery-card,.contact-panel,.intro-panel,.filter-bar{
  background:rgba(255,255,255,.88);border:1px solid rgba(0,0,0,.06);box-shadow:var(--shadow-soft);border-radius:var(--radius);overflow:hidden;
}
.main-card{
  min-height:166px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;position:relative;transition:.18s ease;padding:26px;
}
.main-card:after,.sector-card:after,.product-card:after,.feature-card:after{content:"";position:absolute;left:0;right:0;bottom:0;height:3px;background:var(--red)}
.main-card:hover,.sector-card:hover,.product-card:hover{transform:translateY(-3px);box-shadow:0 22px 50px rgba(20,22,28,.13)}
.main-card svg{color:var(--red);width:42px;height:42px;margin-bottom:16px}
.main-card h2{margin:0;font-size:30px;letter-spacing:.18em;text-transform:uppercase;line-height:1.1}.mini-rule{width:42px;height:3px;background:var(--red);border-radius:99px;margin-top:18px}

.info-strip{border-top:1px solid var(--line);background:#fff;margin-top:10px}
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0}.info-item{display:flex;align-items:center;gap:22px;padding:32px 54px;border-right:1px solid var(--line)}.info-item:last-child{border-right:0}.info-icon{width:66px;height:66px;border:1px solid var(--line);border-radius:999px;display:grid;place-items:center;color:var(--red);flex:0 0 auto}.info-item h3{margin:0 0 3px;font-size:20px}.info-item p{margin:0;color:var(--muted)}

.section{padding:48px 0}.section.compact{padding-top:20px}.sector-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:28px}.sector-card{position:relative;text-align:center;padding:54px 28px 48px;transition:.18s ease;min-height:170px}.sector-card h2{font-size:42px;line-height:1.05;margin:0 0 12px;letter-spacing:.06em}.sector-card p{font-size:20px;margin:0;color:#444952}.sector-card .go{position:absolute;right:22px;top:20px;color:var(--red);font-weight:900;opacity:0;transform:translateX(-8px);transition:.18s ease}.sector-card:hover .go{opacity:1;transform:none}

.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:30px}.product-card{position:relative;display:grid;grid-template-columns:1fr 1.05fr;min-height:178px;padding:30px;align-items:center;transition:.18s ease}.product-card h2{font-size:29px;line-height:1.05;margin:0 0 10px;text-transform:uppercase;letter-spacing:.04em}.card-red-rule{width:36px;height:3px;background:var(--red);margin:8px 0 12px}.product-card p{margin:0;color:#4d535d;font-size:17px}.product-card img{max-height:130px;object-fit:contain;justify-self:end;filter:drop-shadow(0 11px 12px rgba(0,0,0,.10))}.cta-row{display:flex;justify-content:center;gap:24px;margin:34px 0 0}.cta-row .btn{border-radius:8px;min-width:285px;text-transform:uppercase;font-size:17px}
.product-card-long-title h2{font-size:24px;line-height:1.08;letter-spacing:.025em}.product-card img.product-card-image-wide{width:100%;max-width:230px;max-height:142px;border-radius:8px;filter:none}

.intro-panel{display:grid;grid-template-columns:1.05fr 1fr;align-items:center;gap:35px;padding:46px 54px;margin-top:16px}.intro-text h2{font-size:34px;line-height:1.15;margin:0 0 28px}.intro-text p{font-size:17px;margin:0 0 18px;color:#3f444d}.product-still{display:flex;align-items:center;justify-content:center;gap:18px}.product-still img{object-fit:contain;filter:drop-shadow(0 18px 14px rgba(0,0,0,.12))}.product-still .small{height:82px}.product-still .medium{height:124px}.product-still .tall{height:168px}.features-title{margin:30px 0 20px;text-align:center;font-size:24px;letter-spacing:.18em;text-transform:uppercase}.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.feature-card{position:relative;text-align:center;padding:34px 30px 32px}.feature-card svg{width:48px;height:48px;color:var(--red);margin:0 auto 16px}.feature-card h3{font-size:17px;letter-spacing:.06em;text-transform:uppercase;margin:0 0 9px}.feature-card p{margin:0;color:#505660;font-size:15px}.contact-panel{margin:20px 0 54px;padding:34px;display:grid;grid-template-columns:330px 1fr;gap:38px;align-items:start}.contact-title{display:grid;grid-template-columns:76px 1fr;gap:18px;align-items:center}.contact-title .bubble{width:76px;height:76px;border-radius:999px;background:#f5f5f5;display:grid;place-items:center;color:var(--red)}.contact-title h2{font-size:24px;letter-spacing:.05em;line-height:1.1;margin:0;text-transform:uppercase}.contact-panel p{color:#59606a}.contact-form{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.contact-form input,.contact-form textarea,.filter-bar select{width:100%;border:1px solid #d9dbe0;border-radius:8px;background:#fff;padding:15px;color:#20242b}.contact-form textarea{grid-column:2 / 4;min-height:68px;resize:vertical}.contact-form .phone{grid-column:1 / 2}.contact-form button{grid-column:3/4;border-radius:8px;text-transform:uppercase}

.breadcrumb{text-align:center;color:#777d86;margin-top:10px}.breadcrumb a{color:#555b64}.breadcrumb .current{color:var(--red);font-weight:800}.filter-bar{display:flex;justify-content:space-between;align-items:center;padding:18px 28px;margin:24px 0 26px}.filter-left{display:flex;align-items:center;gap:14px;color:#343942}.filter-left select{min-width:170px}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}.gallery-card{overflow:hidden;text-align:center}.gallery-zoom{position:relative;display:block;width:100%;padding:0;border:0;background:#eee;cursor:zoom-in;overflow:hidden}.gallery-zoom img{display:block;width:100%;height:230px;object-fit:cover;transition:transform .25s ease,filter .25s ease}.gallery-zoom:hover img,.gallery-zoom:focus-visible img{transform:scale(1.035);filter:brightness(.82)}.gallery-zoom:focus-visible{outline:3px solid var(--red);outline-offset:-3px}.zoom-hint{position:absolute;left:50%;bottom:14px;transform:translate(-50%,8px);padding:8px 14px;border-radius:999px;background:rgba(0,0,0,.78);color:#fff;font-size:14px;font-weight:700;letter-spacing:.02em;opacity:0;transition:.2s ease;pointer-events:none}.gallery-zoom:hover .zoom-hint,.gallery-zoom:focus-visible .zoom-hint{opacity:1;transform:translate(-50%,0)}.gallery-card h3{margin:18px 0 8px;font-size:19px}.gallery-card .mini-rule{margin:0 auto 18px;width:32px;height:3px}.empty-note{max-width:780px;margin:22px auto 0;text-align:center;color:var(--muted);font-size:17px}

body.lightbox-open{overflow:hidden}.lightbox{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;padding:28px;background:rgba(0,0,0,.9);opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}.lightbox.open{opacity:1;visibility:visible}.lightbox-content{position:relative;display:flex;flex-direction:column;align-items:center;width:min(1400px,94vw);max-height:94vh}.lightbox-image{display:block;width:100%;height:auto;max-width:none;max-height:84vh;object-fit:contain;border-radius:8px;box-shadow:0 24px 70px rgba(0,0,0,.48);background:#111}.lightbox-close{position:absolute;top:-18px;right:-18px;z-index:2;width:46px;height:46px;border:2px solid rgba(255,255,255,.75);border-radius:999px;background:#fff;color:#15171c;font:700 34px/38px Arial,sans-serif;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.35)}.lightbox-close:hover,.lightbox-close:focus-visible{background:var(--red);color:#fff;outline:0}.lightbox-caption{margin:13px 0 0;color:#fff;text-align:center;font-size:16px}

.footer{padding:34px 0;color:#6d737d;text-align:center;border-top:1px solid var(--line);background:#fff}.footer strong{color:var(--ink)}
.footer-company{display:flex;flex-direction:column;align-items:center;gap:4px}.footer-company a{color:inherit}.footer-company a:hover{color:var(--red)}
.toast{position:fixed;left:50%;bottom:24px;transform:translateX(-50%) translateY(18px);background:#15171c;color:#fff;padding:14px 20px;border-radius:999px;box-shadow:0 20px 40px rgba(0,0,0,.22);opacity:0;pointer-events:none;transition:.2s ease;z-index:80}.toast.show{opacity:1;transform:translateX(-50%)}

@media (max-width:1100px){
  .container{width:min(100% - 48px,var(--max))}.header-inner{height:auto;min-height:82px;grid-template-columns:auto 1fr auto}.mobile-menu{display:block}.nav-left{display:none;position:absolute;top:82px;left:0;right:0;background:#fff;border-bottom:1px solid var(--line);padding:14px 24px;box-shadow:var(--shadow-soft)}.nav-left.open{display:grid;gap:8px}.nav-left a{padding:12px 0}.nav-left a.active:after{display:none}.brand{justify-self:center}.brand-logo{width:178px}.header-cta{display:none}.logo-large{width:min(410px,88vw)}.page-title{font-size:38px}.home-headline{font-size:29px}.main-cards,.sector-grid,.products-grid,.features-grid,.gallery-grid{grid-template-columns:1fr 1fr}.info-grid{grid-template-columns:1fr}.info-item{border-right:0;border-bottom:1px solid var(--line);padding:24px}.intro-panel,.contact-panel{grid-template-columns:1fr}.contact-form{grid-template-columns:1fr 1fr}.contact-form textarea{grid-column:1/3}.contact-form button{grid-column:2/3}.product-card{grid-template-columns:1fr}
  .product-card{grid-template-columns:1fr 1.05fr}
}
@media (max-width:700px){
  .container{width:min(100% - 30px,var(--max))}.brand-logo{width:145px}.logo-large{width:min(340px,88vw)}.page-title{font-size:30px;letter-spacing:.16em}.home-headline{font-size:24px}.subtitle{font-size:17px}.product-band{height:160px}.product-track{gap:28px}.product-track img{height:86px}.product-track img.tall{height:126px}.carousel-arrow{width:45px;height:45px;font-size:36px}.carousel-arrow.left{left:-12px}.carousel-arrow.right{right:-12px}.main-cards,.sector-grid,.products-grid,.features-grid,.gallery-grid{grid-template-columns:1fr}.main-card h2{font-size:24px}.sector-card h2{font-size:32px}.filter-bar{align-items:stretch;gap:14px;flex-direction:column}.gallery-zoom img{height:210px}.contact-form{grid-template-columns:1fr}.contact-form textarea,.contact-form button{grid-column:auto}.intro-panel{padding:30px 22px}.product-still{flex-wrap:wrap}.cta-row{flex-direction:column}.cta-row .btn{width:100%;min-width:0}.info-item{align-items:flex-start}.footer{font-size:14px}.lightbox{padding:12px}.lightbox-content{width:calc(100vw - 24px)}.lightbox-image{max-height:82vh}.lightbox-close{top:-10px;right:-4px;width:42px;height:42px;font-size:30px}
  .product-card{grid-template-columns:1fr 1.05fr;padding:24px;gap:12px}.product-card h2{font-size:24px}.product-card-long-title h2{font-size:21px}.product-card p{font-size:16px}.product-card img.product-card-image-wide{max-height:130px}
}
