@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root{
  --bg: #f7f8f7;
  --bg2:#ffffff;
  --text:#0b0f0d;
  --muted:#4b5a52;
  --sage:#7a8f7b;
  --sage2:#6f8b7a;
  --bluegray:#8ea1ad;
  --line: rgba(12, 18, 14, .10);
  --glass: rgba(255,255,255,.18);
  --glass-strong: rgba(255,255,255,.30);
  --shadow: 0 20px 60px rgba(0,0,0,.10);
  --shadow2: 0 10px 30px rgba(0,0,0,.08);
  --radius: 20px;
  --radius2: 28px;
  --max: 1180px;
  --langW: clamp(180px, 18vw, 260px);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 800px at 30% -10%, rgba(122,143,123,.20), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(142,161,173,.18), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2) 30%, var(--bg));
}

a{color:inherit; text-decoration:none}
.hidden{display:none!important}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.topbar{
  position:fixed; left:0; right:0; top:0;
  /* Keep header above all content, but below full-screen overlays */
  /* Header must be above page content, but below drawers */
  z-index:12000;
  padding:14px 0;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.topbar.scrolled{
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.nav{
  display:flex; align-items:center; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700;
  letter-spacing:.4px;
}
.brand svg{width:28px; height:28px}
.spacer{flex:1}

.navlinks{
  display:flex; gap:16px; align-items:center;
  font-size:14px;
}
.navlinks a{opacity:.86}
.navlinks a:hover{opacity:1}
.navlinks a.active{opacity:1; text-decoration:underline; text-underline-offset:6px}

.nav-cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  border:1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding:10px 14px;
  border-radius: 999px;
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  font-weight:600;
  font-size:14px;
  transition: transform .15s ease, background .25s ease, border-color .25s ease;
}

.btn-ico{width:18px;height:18px;flex:0 0 auto;}
.topbar.scrolled .btn{
  border-color: var(--line);
  background: rgba(255,255,255,.60);
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.26)}
.btn.primary{
  border-color: rgba(122,143,123,.55);
  background: linear-gradient(135deg, rgba(122,143,123,.25), rgba(142,161,173,.18));
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(122,143,123,.35), rgba(142,161,173,.22))}
.btn.ghost{
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
}
select.lang{
  appearance:none;
  border-radius: 999px;
  padding:10px 38px 10px 12px;
  border:1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.12);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.topbar.scrolled select.lang{
  border-color: var(--line);
  background: rgba(255,255,255,.62);
}
.langwrap{position:relative}
.langwrap:after{
  content:"▾";
  position:absolute; right:14px; top:8px;
  opacity:.7;
  pointer-events:none;
}

.hero{
  position:relative;
  padding:120px 0 42px;
}
.hero .frame{
  border-radius: var(--radius2);
  overflow:hidden;
  position:relative;
  min-height: 540px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(122,143,123,.22), rgba(142,161,173,.18));
}
.hero video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(.98) contrast(1.02);
}
.hero .overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 20% 40%, rgba(0,0,0,.40), rgba(0,0,0,.18) 55%, rgba(0,0,0,.10)),
              linear-gradient(90deg, rgba(0,0,0,.30), rgba(0,0,0,.10) 60%, rgba(0,0,0,.15));
}
.hero .content{
  position:relative;
  padding: 56px 44px;
  color:#fff;
  max-width: 720px;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight:600;
  opacity:.92;
  font-size:13px;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.kicker .dot{
  width:8px; height:8px; border-radius:999px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 0 0 4px rgba(122,143,123,.25);
}
.hero h1{
  margin:14px 0 10px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -1.2px;
}
.hero p{
  margin:0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}
.hero .actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap}
.hero .actions .btn{border-color: rgba(255,255,255,.30)}
.hero .actions .btn.primary{border-color: rgba(255,255,255,.32)}
.hero .actions .btn:hover{background: rgba(255,255,255,.22)}

.section{
  padding: 54px 0;
}
.section h2{
  font-size: 34px;
  letter-spacing: -0.6px;
  margin:0 0 14px;
}
.section p.lead{
  margin:0 0 22px;
  color: var(--muted);
  max-width: 840px;
  line-height: 1.65;
}

.grid{
  display:grid;
  gap:14px;
}
.grid.cols-4{grid-template-columns: repeat(4, 1fr)}
.grid.cols-3{grid-template-columns: repeat(3, 1fr)}
.grid.cols-2{grid-template-columns: repeat(2, 1fr)}

.card{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px 18px;
  transition: transform .18s ease, background .25s ease, border-color .25s ease;
}
.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.30);
}
.card .label{
  color: rgba(11,15,13,.62);
  font-size: 12px;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin-bottom:6px;
}
.card .value{
  font-size: 22px;
  font-weight:700;
  letter-spacing:-.4px;
}
.card .small{
  margin-top:8px;
  color: rgba(11,15,13,.65);
  font-size: 13px;
  line-height: 1.5;
}

.pills{
  display:flex; flex-wrap:wrap; gap:10px;
}
.pill{
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-weight:700;
  letter-spacing:-.2px;
}
.pill:hover{background: rgba(255,255,255,.22)}
.pill .sub{
  display:block;
  font-weight:600;
  letter-spacing:0;
  font-size:12px;
  color: rgba(11,15,13,.60);
  margin-top:4px;
}

.filters{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  margin: 10px 0 18px;
}
.input, .select{
  padding:11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px;
  min-width: 190px;
}
.input{min-width: 240px}
.select{min-width: 210px}

.model-card{
  padding: 16px 16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}
.model-card .name{
  font-size:16px; font-weight:700;
  letter-spacing:-.2px;
}
.model-card .meta{
  font-size:12px;
  color: rgba(11,15,13,.58);
  white-space:nowrap;
}

.pagehead{
  padding: 112px 0 20px;
}
.pagehead h1{
  margin:0 0 10px;
  font-size: 44px;
  letter-spacing:-.9px;
}
.breadcrumb{
  font-size:13px;
  color: rgba(11,15,13,.58);
  margin-bottom:12px;
}
.breadcrumb a{opacity:.86}
.breadcrumb a:hover{opacity:1}

.stickybar{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  /* Always visible over page content; drawers will still sit above */
  z-index: 11000;
  display:flex;
  gap:10px;
  padding:10px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
}
.stickybar .btn{padding:11px 14px}
.stickybar.hide{opacity:0; pointer-events:none; transform: translateX(-50%) translateY(12px); transition: all .25s ease}
.stickybar.show{opacity:1; pointer-events:auto; transform: translateX(-50%) translateY(0); transition: all .25s ease}

.banner{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 74px;
  /* Banner sits above header; drawers still sit above everything */
  z-index: 12500;
  max-width: 780px;
  width: calc(100% - 28px);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  padding: 12px 14px;
  display:none;
}
.banner.show{display:flex; align-items:center; justify-content:space-between; gap:12px}
.banner .text{font-size:14px; color: rgba(11,15,13,.78)}
.banner .actions{display:flex; gap:10px; align-items:center}
.banner .actions .btn{background: rgba(255,255,255,.72); border-color: var(--line)}

.form{
  max-width: 860px;
}
.form .steps{
  display:flex; gap:10px; margin-bottom:14px;
}
.stepbadge{
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  font-weight:700;
  font-size:13px;
  color: rgba(11,15,13,.74);
}
.stepbadge.active{
  background: linear-gradient(135deg, rgba(122,143,123,.25), rgba(142,161,173,.18));
  border-color: rgba(122,143,123,.30);
}
.formgrid{
  display:grid;
  gap:12px;
  grid-template-columns: 1fr 1fr;
}
.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.field label{
  font-size: 13px;
  color: rgba(11,15,13,.70);
  font-weight: 700;
}
.field input, .field select, .field textarea{
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px;
}
.field textarea{min-height: 120px; resize:vertical}
.formactions{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}

.footer{
  padding: 48px 0 60px;
  color: rgba(11,15,13,.65);
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.footer .row{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.footer .links{display:flex; gap:14px; flex-wrap:wrap}
.footer a{opacity:.82}
.footer a:hover{opacity:1}


.mobilemenu{display:none; position:relative}
.mobilemenu summary{list-style:none}
.mobilemenu summary::-webkit-details-marker{display:none}
.mobilemenu .panel{
  position:absolute; right:0; top:52px;
  width: 260px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.mobilemenu a{display:block; padding:10px 10px; border-radius: 12px; font-weight:700; font-size:14px; opacity:.9}
.mobilemenu a:hover{background: rgba(122,143,123,.10); opacity:1}
@media (max-width: 960px){
  .mobilemenu{display:block}
}

@media (max-width: 960px){
  .navlinks{display:none}
  .hero h1{font-size: 44px}
  .grid.cols-4{grid-template-columns: repeat(2,1fr)}
  .grid.cols-3{grid-template-columns: repeat(2,1fr)}
}
@media (max-width: 640px){
  .hero .content{padding: 44px 20px}
  .hero h1{font-size: 38px}
  .grid.cols-2{grid-template-columns: 1fr}
  .grid.cols-4{grid-template-columns: 1fr}
  .grid.cols-3{grid-template-columns: 1fr}
  .formgrid{grid-template-columns: 1fr}
  .stickybar{width: calc(100% - 28px); justify-content:center}
}

/* =========================
   2026-02 — UI update (header/menu/search, centered text, sector cards)
   ========================= */

/* Center text across pages */
main, .pagehead, .section, .footer { text-align: center; }
.breadcrumb { text-align:center; }

/* Lists remain readable while centered */
.card ul, .pagehead ul {
  display: inline-block;
  text-align: left;
  margin: 10px auto 0;
}

/* Header layout: menu (left), logo (center), search + language (right) */
.topbar .nav{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.topbar .brand{ justify-self: center; }
.topbar .brand span{ letter-spacing: .38em; font-size: 12px; }

.navright{ display:flex; align-items:center; gap:10px; justify-self:end; }

.iconbtn{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(11,15,13,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.iconbtn:hover{ background: rgba(255,255,255,.14); }
.iconbtn svg{ width: 18px; height: 18px; }

/* Menu button with label */
.menubtn{
  width: auto;
  padding: 0 14px;
  gap: 10px;
  justify-content: flex-start;
}
.menubtn .menulabel{
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;
  opacity: .82;
}

/* Drawer overlay (menu/search) */
.drawer{
  position: fixed;
  inset: 0;
  /* Make drawers clearly sit on top (and not feel "behind" the page) */
  background: rgba(6,10,8,.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  /* Must sit on top of the entire site */
  z-index: 20000;
}
.drawer.show{ display: flex; }
.drawer-panel{
  position: relative;
  z-index: 20001;
  width: min(820px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.24);
  /* Less transparent so content reads clearly */
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  overflow: hidden;
}
.drawer-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.drawer-title{ font-weight: 800; letter-spacing: .12em; font-size: 12px; color: rgba(11,15,13,.72); }
.drawer-body{ padding: 16px 18px 18px; }
.drawerlinks{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.drawerlinks a{
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: rgba(11,15,13,.78);
}
.drawerlinks a:hover{ background: rgba(255,255,255,.16); }
.drawercta{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top: 14px; }

/* Featured model card inside the menu drawer */
.menufeature{ margin-top: 18px; }
.menufeature-title{
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 11px;
  opacity: .70;
  text-transform: uppercase;
  margin: 6px 2px 10px;
}
.featurecard{
  display:flex;
  gap: 14px;
  align-items:center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  padding: 14px 14px;
  transition: transform .15s ease, background .25s ease;
}
.featurecard:hover{ transform: translateY(-1px); background: rgba(255,255,255,.16); }
.featureimgwrap{
  width: 86px;
  height: 66px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  flex: 0 0 auto;
}
.featureimg{ width:100%; height:100%; object-fit: cover; display:block; }
.featuremeta{ display:flex; flex-direction:column; gap: 6px; }
.featurename{ font-weight: 800; letter-spacing: .02em; }
.featurehint{ font-size: 12px; opacity: .68; }

/* Menu drawer: full-height left sheet (1/3 width) + Apple-like vertical tiles */
.drawer[data-drawer="menu"]{
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}
.drawer[data-drawer="menu"] .drawer-panel{
  height: 100vh;
  width: 33.333vw;
  min-width: 320px;
  max-width: 560px;
  border-radius: 0 28px 28px 0;
  overflow: auto;
  transform: translateX(-105%);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.drawer[data-drawer="menu"].show .drawer-panel{ transform: translateX(0); }
.drawer[data-drawer="menu"] .drawerlinks{
  grid-template-columns: 1fr;
  gap: 12px;
}
.drawer[data-drawer="menu"] .drawerlinks a{
  padding: 16px 18px;
  border-radius: 22px;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Search drawer: slide-down sheet from under the header */
.drawer[data-drawer="search"]{
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  /* Keep the same overlay feel as the menu */
  background: rgba(6,10,8,.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  top: var(--topbar-h, 76px);
  bottom: 0;
}
.drawer[data-drawer="search"].show{ display:block; }
.drawer[data-drawer="search"] .searchsheet{
  height: calc(100vh - var(--topbar-h, 76px));
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  transform: translateY(-14px);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.drawer[data-drawer="search"].show .searchsheet{
  transform: translateY(0);
  opacity: 1;
}
.searchbar{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.searchbar .searchinput{
  flex: 1 1 auto;
  width: auto;
  height: 52px;
  border-radius: 18px;
  font-size: 16px;
}
.searchresults{
  padding: 18px;
  height: calc(100% - 82px);
  overflow: auto;
}
.search-empty{
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  opacity: .78;
}

.popular-wrap{ margin-top: 18px; }
.search-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 920px){ .search-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px){ .search-grid{ grid-template-columns: 1fr; } }
.search-card{
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  transition: transform .15s ease, background .25s ease;
}
.search-card:hover{ transform: translateY(-1px); background: rgba(255,255,255,.16); }

.search-thumb{
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  aspect-ratio: 4 / 3;
}
.search-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.search-card .value{
  font-weight: 700;
  line-height: 1.15;
  padding: 0 6px 2px;
}

/* Language dropdown (animated + flags) */
.langwrap:after{ display:none; }
.lang-native{
  position:absolute;
  opacity:0;
  pointer-events:none;
  width:0; height:0;
}
.langbtn{
  height: 44px;
  padding: 0 12px;
  width: var(--langW);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(11,15,13,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display:inline-flex;
  align-items:center;
  gap: 10px;
  justify-content:center;
  cursor:pointer;
}
.topbar.scrolled .langbtn{ border-color: var(--line); background: rgba(255,255,255,.60); }
.langbtn .flag{ font-size: 16px; line-height: 1;   pointer-events:none;
}
.langbtn .txt{ font-weight: 800; letter-spacing: .14em; font-size: 12px;   pointer-events:none;
}

.langdropdown{
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  padding: 10px;
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
  /* Must appear above the entire site (including overlays) */
  z-index: 22000;
}
.langdropdown.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.langitem{
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  display:flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
}
.langitem:hover{ background: rgba(0,0,0,.03); }
.langitem.active{ border-color: rgba(122,143,123,.55); background: rgba(122,143,123,.08); }
.langitem .name{ font-weight: 700; font-size: 13px; }

.searchform{ display:flex; gap:10px; align-items:center; justify-content:center; flex-wrap: wrap; }
.searchinput{
  width: min(520px, 100%);
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
  padding: 0 14px;
  outline: none;
}
.searchinput:focus{ border-color: rgba(122,143,123,.55); box-shadow: 0 0 0 4px rgba(122,143,123,.18); }

/* Hero: no overlay text + 20% taller */
.hero .frame{
  min-height: 648px;
  height: 72vh;
  max-height: 980px;
}
@media (max-width: 640px){
  .hero .frame{ min-height: 560px; height: 76vh; }
}

/* Sector cards on home */
.sector-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
@media (max-width: 880px){ .sector-grid{ grid-template-columns: 1fr; } }

.sector-card{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  box-shadow: 0 26px 80px rgba(0,0,0,.12);
}
.sector-card img{ width:100%; height:100%; object-fit: cover; display:block; transform: scale(1.02); }
.sector-card .shade{
  position:absolute; inset:0;
  background: radial-gradient(900px 340px at 20% 20%, rgba(255,255,255,.22), transparent 60%),
              linear-gradient(to top, rgba(6,10,8,.48), rgba(6,10,8,.05));
}
.sector-card .sector-title{
  position:absolute; left: 0; right: 0; bottom: 16px;
  display:flex; justify-content:center;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 26px rgba(0,0,0,.45);
}

/* About facts (alternating rows) */
.facts{ display:flex; flex-direction:column; gap: 14px; }
.factrow{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
}
.factrow.reverse{ grid-template-columns: 1fr 180px; }
.factrow.reverse .factmedia{ order: 2; }
.factrow.reverse .facttext{ order: 1; }
.factmedia{ display:flex; align-items:center; justify-content:center; }
.factmedia img{ width: 120px; height: 120px; }
.facttext .k{ font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(11,15,13,.62); }
.facttext .v{ font-size: 40px; font-weight: 900; letter-spacing: -0.02em; margin-top: 6px; }
@media (max-width: 760px){
  .factrow, .factrow.reverse{ grid-template-columns: 1fr; }
  .factrow.reverse .factmedia, .factrow.reverse .facttext{ order: initial; }
}

/* Manufacturing: vertical facts + roulette */
.factstack{ display:flex; flex-direction:column; gap: 12px; }
.factstack .card{ padding: 18px; }

.roulette{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
}
.roulette-track{
  display:flex;
  gap: 14px;
  padding: 14px;
  width: max-content;
  animation: roll 26s linear infinite;
}
.roulette:hover .roulette-track{ animation-play-state: paused; }
.roulette-item{
  width: 340px;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
}
.roulette-item img{ width:100%; height:100%; object-fit: cover; display:block; }
@keyframes roll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Sticky bar: make buttons consistent */
.stickybar .btn{ border-radius: 16px; }
.stickybar .btn.primary{ min-width: 160px; }

/* Make filters and form actions centered */
.filters{ justify-content: center; }
.formactions{ justify-content: center; }

/* Remove any remaining placeholder helper blocks visually (if present) */
.helper, .mvp, .hint{ display:none !important; }

html.modal-open{ overflow:hidden; }



/* Brand logo from provided asset */
.brand .brandlogo{ height:28px; width:auto; display:block; }
.brand{ gap:10px; }
@media (max-width:520px){ .brand span{ display:none; } }

/* About facts: reveal animation and counters */
.facts .factrow .factmedia{
  opacity: 0;
  transform: translateX(-28px);
  transition: transform .85s cubic-bezier(.2,.8,.2,1), opacity .85s ease;
}
.facts .factrow.reverse .factmedia{ transform: translateX(28px); }
.facts .factrow.inview .factmedia{ opacity: 1; transform: translateX(0); }
.counter{ font-variant-numeric: tabular-nums; }

/* Manufacturing blocks */
.manu-stack{ display:flex; flex-direction:column; gap:18px; }
.manu-card{ text-align:center; padding: 18px 18px 16px; }
.manu-card .factmedia img{ width:72px; height:72px; }

/* RFQ: larger symmetric buttons + shelf */
.rfq-actions{ justify-content:center; }
.rfq-actions .btn{
  flex: 1 1 0;
  min-width: 220px;
  padding: 16px 22px;
  font-size: 16px;
  border-radius: 18px;
}
@media (max-width:560px){
  .rfq-actions .btn{ min-width: 100%; }
}
.rfq-shelf{ margin-top: 18px; }
.rfq-shelf-title{
  font-weight: 800;
  letter-spacing: .2px;
  margin: 6px 0 12px;
  opacity: .92;
}
.model-card.compact{ padding: 14px 16px; }
.model-card.compact .meta{ margin-top: 8px; font-size: 12px; opacity: .65; }

/* =========================
   2026-02-19 — header intro + hero controls + about/manufacturing enhancements
   ========================= */

/* Brand: use uploaded logo + intro animation */
.brand .brandlogo{ height:55px; }
@media (max-width:520px){ .brand .brandlogo{ height:47px; } }
.brand span{ letter-spacing: .22em; }
.brand .brandtext{
  display:inline-block;
  white-space:nowrap;
  max-width: 0;
  overflow:hidden;
  opacity: 0;
  transform: translateX(-10px);
  transition: max-width .72s cubic-bezier(.2,.8,.2,1), opacity .46s ease, transform .72s cubic-bezier(.2,.8,.2,1);
  will-change: max-width, transform, opacity;
}
.brand .brandlogo{
  opacity: 0;
  transform: translateX(0);
  transition: opacity .40s ease, transform .72s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}
.brand.is-logo-in .brandlogo{ opacity: 1; }
.brand.is-expanded .brandlogo{ transform: translateX(calc(-1 * var(--brand-shift, 54px))); }
.brand.is-expanded .brandtext{
  max-width: 420px;
  opacity: 1;
  transform: translateX(0);
}

/* Hero: wider frame + tiny media controls */
.hero .frame{ width:120%; margin-left:-10%; }
@media (max-width: 820px){ .hero .frame{ width:100%; margin-left:0; } }

.hero-controls{
  position:absolute;
  right: 14px;
  bottom: 14px;
  display:flex;
  gap:10px;
  z-index: 4;
}
.hero-controls .hc{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hero-controls .hc:hover{ background: rgba(255,255,255,.16); }
.hero-controls .hc svg{ width: 18px; height: 18px; }

/* About facts: bigger visuals */
.factmedia img{ width: 140px; height: 140px; }
.facttext .k{ font-size: 13px; }
.facttext .v{ font-size: 46px; }
@media (max-width: 760px){
  .factmedia img{ width: 124px; height: 124px; }
  .facttext .v{ font-size: 40px; }
}

/* Manufacturing: side-by-side rows + partners reveal */
.manu-rows{ display:flex; flex-direction:column; gap: 18px; }
.manu-row{
  display:grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: 22px;
  align-items:center;
}
.manu-row.reverse{ grid-template-columns: 1fr minmax(320px, 560px); }
.manu-row.reverse .manu-info{ order: 2; }
.manu-row.reverse .manu-media{ order: 1; }
.manu-info.card{ padding: 28px 26px; text-align:center; }
.manu-info .factmedia img{ width:72px; height:72px; }
.manu-media{ min-width: 0; }

.partners-stage{ position:relative; }
.partners-stage .roulette{ opacity:1; transform:none; transition:none; }
.partners-stage.show .roulette{ opacity:1; transform:none; }
ateY(0); }
.trucklane{ display:none; 
  position:absolute;
  left: 0; right: 0;
  top: 10px;
  height: 120px;
  pointer-events:none;
  overflow: visible;
}
.trucklane img{
  position:absolute;
  right: -260px;
  top: 0;
  width: 220px;
  height: auto;
  opacity: 0;
  transform: translateX(0);
}
.partners-stage.run .trucklane img{ opacity: 1; animation: truckride 2.6s ease-in-out forwards; }
@keyframes truckride{
  from{ transform: translateX(0); }
  to{ transform: translateX(calc(-100vw - 520px)); }
}
@media (prefers-reduced-motion: reduce){
  .partners-stage .roulette{ opacity:1; transform:none; }
  .trucklane{ display:none; }
}

/* RFQ: make action buttons visually symmetric */
.rfq-actions{ gap: 14px; }

/* Override older brand text styling */
.topbar .brand .brandtext{ letter-spacing: .26em; font-size: 13px; font-weight: 800; }
@media (max-width:520px){
  .brand .brandtext{ display:inline-block; font-size: 12px; letter-spacing: .22em; }
}


/* Manufacturing: larger titles */
.manu-info .value{ font-size: 28px; letter-spacing: -0.6px; }
@media (max-width: 860px){
  .manu-row{ grid-template-columns: 1fr; }
  .manu-row.reverse{ grid-template-columns: 1fr; }
  .manu-row.reverse .manu-info, .manu-row.reverse .manu-media{ order: initial; }
}

/* RFQ contact bar (top of Request a Quote page) */
.rfq-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
  padding:16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}
.rfq-contact{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  align-items:center;
}
.rfq-contact-item{
  min-width: 200px;
}
.rfq-contact-label{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.65;
  margin-bottom:6px;
  text-align:center;
}
.rfq-contact-value{
  font-size:16px;
  font-weight:750;
  text-align:center;
  display:block;
}
.rfq-cta{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.rfq-cta .btn{
  min-width: 190px;
  justify-content:center;
}
@media (max-width: 820px){
  .rfq-top{flex-direction:column; align-items:stretch;}
  .rfq-contact{justify-content:center;}
  .rfq-cta{justify-content:center;}
}


/* ===== Request a Quote contact list (homepage) ===== */
.rfq-grid .rfq-contact{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  flex:1;
  min-width:260px;
}
.rfq-grid .rfq-contact-row{
  width: min(520px, 100%);
  display:grid;
  grid-template-columns: 1fr 36px;
  gap: 12px;
  align-items:center;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  text-decoration:none;
  color: inherit;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.rfq-grid .rfq-contact-row:hover{
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  transform: translateY(-1px);
}

.rfq-grid .rfq-contact-row:active{
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.rfq-grid .rfq-contact-text{
  text-align:center;
  font-size:16px;
  font-weight:750;
  letter-spacing:.01em;
  color: inherit;
}
.rfq-grid .rfq-contact-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.9;
}
.rfq-grid .rfq-contact-icon .rfq-ico{
  width:22px;
  height:22px;
}
