
*,
*::before,
*::after{box-sizing:border-box}
:root{
  --ink:#17212b;
  --muted:#607080;
  --line:#d5dbe3;
  --panel:#f6f4ef;
  --panel-2:#ece8de;
  --brand:#6e62a8;
  --brand-dark:#51447f;
  --link:#1b4fb5;
  --bg:#ffffff;
  --shadow:0 10px 28px rgba(20,30,40,.08);
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:#fafafa;
  font-size:14px;
}
a{color:var(--link); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; display:block}
.container{width:min(1240px, calc(100% - 24px)); margin:0 auto}
.topbar{
  background:linear-gradient(180deg,#8c80bd,#7869ad);
  color:#fff;
  border-bottom:3px solid #51447f;
}
.topbar-inner{
  padding:18px 0 14px;
  display:grid;
  grid-template-columns: 280px 1fr 240px;
  gap:18px;
  align-items:center;
}
.logo-wrap{display:flex; gap:12px; align-items:flex-start}
.logo-mark{
  width:62px; height:62px; border-radius:18px;
  background:linear-gradient(135deg,#0f3276,#2f6bff 60%,#62d8ff);
  display:grid; place-items:center; color:#fff; font-weight:700; font-size:26px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.logo-text h1{
  margin:0;
  font-size:34px;
  letter-spacing:-.04em;
  color:#fff;
}
.logo-text .sub{
  font-size:13px;
  color:#efeafc;
  margin-top:3px;
}
.headline{
  text-align:center;
  font-size:30px;
  letter-spacing:.08em;
  color:#f3eeff;
}
.headline small{
  display:block;
  font-size:13px;
  letter-spacing:.18em;
  margin-top:7px;
  color:#ddd5f5;
}
.top-actions{
  display:flex; justify-content:flex-end; align-items:center; gap:12px;
}
.top-actions a{
  color:#fff; border:1px solid rgba(255,255,255,.24);
  padding:9px 14px; border-radius:999px; font-weight:700; font-size:13px;
}
.nav{
  background:#e6dfef;
  border-top:1px solid rgba(255,255,255,.2);
  border-bottom:1px solid #c8bfdc;
}
.nav-inner{
  display:flex; flex-wrap:wrap; gap:0;
}
.nav-inner a{
  padding:10px 15px;
  border-right:1px solid #c8bfdc;
  color:#3f326c;
  font-weight:700;
  font-size:13px;
}
.page{
  padding:18px 0 36px;
}
.layout{
  display:grid;
  grid-template-columns: 290px 1fr;
  gap:18px;
  align-items:start;
}
.sidebar-box{
  background:var(--panel);
  border:1px solid #aca595;
  margin-bottom:14px;
}
.sidebar-title{
  background:#7b6aae;
  color:#fff;
  font-weight:700;
  padding:8px 10px;
  font-size:14px;
}
.sidebar-body{padding:10px}
.search-row{
  display:grid;
  grid-template-columns:1fr 84px;
  gap:8px;
  margin-bottom:8px;
}
input[type=text], input[type=email], input[type=password], textarea, select{
  width:100%;
  padding:10px 11px;
  border:1px solid #bfc7d1;
  border-radius:6px;
  font:inherit;
  background:#fff;
}
button, .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border:1px solid #3f326c;
  background:var(--brand-dark);
  color:#fff;
  border-radius:6px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
}
.btn-lite{
  background:#fff;
  color:#3f326c;
}
.note{
  color:#5b6773;
  font-size:12px;
  line-height:1.45;
}
.category-list{
  margin:0; padding-left:18px;
}
.category-list li{margin:6px 0}
.main-panel{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero{
  background:linear-gradient(180deg,#fff,#f4f6fa);
  border-bottom:1px solid var(--line);
  padding:18px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:center;
}
.hero h2{
  margin:0 0 10px;
  font-size:34px;
  letter-spacing:-.04em;
}
.hero p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.55;
  font-size:15px;
}
.hero-card{
  background:linear-gradient(180deg,#0c1830,#17315f);
  border-radius:18px;
  min-height:260px;
  overflow:hidden;
  position:relative;
  box-shadow:0 22px 46px rgba(20,34,62,.18);
}
.hero-card .copy{
  position:absolute; inset:22px auto auto 22px;
  color:#fff; max-width:280px;
}
.hero-card .copy strong{
  display:block; font-size:28px; line-height:1.03; letter-spacing:-.04em;
}
.hero-card .copy span{
  display:block; margin-top:10px; color:#d7e4ff; line-height:1.4;
}
.hero-art{
  position:absolute; right:0; bottom:0; width:75%; height:100%;
  background:
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.25), transparent 22%),
    radial-gradient(circle at 58% 65%, rgba(87,214,222,.35), transparent 18%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.02));
}
.hero-art .motor{
  position:absolute; right:52px; bottom:28px; width:260px; height:138px;
  background:linear-gradient(180deg,#dde4ef,#79879a);
  border-radius:28px;
  box-shadow:0 16px 32px rgba(0,0,0,.28);
}
.hero-art .motor:before{
  content:""; position:absolute; right:-58px; top:16px; width:92px; height:106px;
  background:linear-gradient(180deg,#243955,#081321); border-radius:24px;
}
.hero-art .motor:after{
  content:""; position:absolute; left:-34px; top:38px; width:76px; height:58px;
  background:linear-gradient(180deg,#eef4fb,#8da1b7); border-radius:50px;
}
.hero-art .arm{
  position:absolute; right:170px; top:34px; width:210px; height:22px;
  background:linear-gradient(180deg,#cb6c31,#7f3e18); border-radius:14px; transform:rotate(-32deg);
}
.hero-art .arm:before{
  content:""; position:absolute; left:-86px; top:58px; width:154px; height:22px;
  background:linear-gradient(180deg,#cb6c31,#7f3e18); border-radius:14px; transform:rotate(58deg);
}
.hero-art .arm:after{
  content:""; position:absolute; left:-96px; top:48px; width:38px; height:38px; border-radius:50%;
  background:#152540;
}
.section-block{padding:18px}
.section-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px;
}
.section-head h3{
  margin:0; font-size:24px; letter-spacing:-.03em;
}
.tiles{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.tile{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}
.tile-thumb{
  height:124px;
  background:linear-gradient(180deg,#f2f5fb,#d9e2f1);
  position:relative;
}
.tile-thumb:before{
  content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:120px; height:52px; background:linear-gradient(180deg,#edf4fb,#8090a6);
  border-radius:28px;
}
.tile-thumb.thumb2:before{width:86px;height:86px;border-radius:50%}
.tile-thumb.thumb3:before{width:104px;height:46px;background:linear-gradient(180deg,#d0dde9,#6c8097)}
.tile-thumb.thumb4:before{width:88px;height:88px;background:linear-gradient(180deg,#ececec,#8a8a8a); border-radius:18px}
.tile-body{padding:12px}
.tile-body h4{margin:0 0 6px; font-size:16px}
.tile-body p{margin:0 0 10px; color:var(--muted); font-size:13px; min-height:38px}
.table-wrap{
  overflow:auto;
  border:1px solid var(--line);
  border-radius:12px;
}
table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
th, td{
  padding:11px 10px;
  border-bottom:1px solid #e4e9f0;
  text-align:left;
  vertical-align:top;
}
th{
  background:#eef3f9;
  color:#32485f;
  font-size:13px;
}
.price{
  font-weight:700;
  color:#253d55;
}
.footer{
  border-top:1px solid var(--line);
  padding:18px 0 34px;
  color:#617287;
  font-size:13px;
}
.footer-grid{
  display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.breadcrumbs{
  font-size:13px;
  color:#5f6e7c;
  margin:0 0 12px;
}
.product-grid{
  display:grid; grid-template-columns:320px 1fr; gap:20px;
}
.product-gallery{
  background:#f8fafc;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
}
.product-photo{
  height:280px;
  border-radius:12px;
  background:linear-gradient(180deg,#edf4fb,#d7e0ef);
  position:relative;
}
.product-photo:before{
  content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:210px; height:92px; border-radius:44px;
  background:linear-gradient(180deg,#eef4fb,#8191a6);
}
.product-photo:after{
  content:""; position:absolute; left:108px; top:121px; width:52px; height:50px;
  border-radius:50%; background:#a0afc3;
}
.spec-list{
  margin:0; padding-left:18px;
}
.price-box{
  background:#f8fbff;
  border:1px solid #d9e3ef;
  border-radius:12px;
  padding:14px;
}
.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.form-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
  box-shadow:var(--shadow);
}
.status-pill{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  background:#edf5ff; color:#2558ac; font-weight:700; font-size:12px;
}
@media (max-width: 1080px){
  .layout{grid-template-columns:1fr}
  .tiles{grid-template-columns:repeat(2,1fr)}
  .hero-grid,.product-grid{grid-template-columns:1fr}
  .topbar-inner{grid-template-columns:1fr; text-align:center}
  .logo-wrap,.top-actions{justify-content:center}
}
@media (max-width: 720px){
  .tiles{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .headline{font-size:22px}
  .hero h2{font-size:28px}
  .nav-inner a{padding:10px 11px}
}


.rfq-banner{
  background:#111;
  color:#fff;
  border-bottom:1px solid #262626;
}
.rfq-banner-title{
  padding:16px 20px;
  text-align:center;
  font-weight:700;
  font-size:22px;
  letter-spacing:-.02em;
}
.rfq-shell{
  background:#fbfbf8;
  border:1px solid #d8d4c7;
  border-radius:14px;
  padding:22px;
  box-shadow:var(--shadow);
}
.rfq-intro{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:18px;
  align-items:start;
  margin-bottom:22px;
}
.rfq-kicker{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:#eae7ff;
  color:#433885;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.rfq-intro h2{
  margin:10px 0 8px;
  font-size:30px;
  letter-spacing:-.04em;
}
.rfq-intro p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.rfq-product-card{
  background:linear-gradient(180deg,#fff,#f3f6fb);
  border:1px solid #d6deea;
  border-radius:14px;
  padding:16px;
}
.rfq-product-label{
  font-size:12px;
  font-weight:700;
  color:#5e6d80;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.rfq-product-name{
  margin-top:6px;
  font-size:22px;
  font-weight:700;
  letter-spacing:-.03em;
}
.rfq-product-meta{
  margin-top:6px;
  color:#5d6d80;
  font-size:13px;
}
.rfq-form-polished span{
  display:block;
  margin-bottom:6px;
  font-weight:700;
  color:#273a4f;
}
.rfq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 16px;
}
.rfq-line-items, .rfq-message-block{
  margin-top:22px;
}
.rfq-subhead{
  font-size:20px;
  font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:12px;
}
.rfq-qty-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 16px;
}
.rfq-qty-row{
  display:flex;
  align-items:center;
  gap:10px;
}
.rfq-qty-row input{
  width:180px;
}
.rfq-qty-row em{
  color:#5f6e7c;
  font-style:normal;
}
.rfq-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:20px;
}
@media (max-width: 900px){
  .rfq-intro,
  .rfq-grid,
  .rfq-qty-grid{
    grid-template-columns:1fr;
  }
  .rfq-actions{
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}


.demo-main-nav{
  background:#0b1520;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.demo-main-nav-inner{
  display:flex;
  flex-wrap:wrap;
  gap:0;
}
.demo-main-nav-inner a{
  color:#dbe7f3;
  padding:10px 14px;
  border-right:1px solid rgba(255,255,255,.08);
  font-size:13px;
  font-weight:700;
}
.demo-main-nav-inner a:hover{
  text-decoration:none;
  background:rgba(255,255,255,.06);
}
.demo-main-nav-current{
  background:rgba(47,107,255,.16);
}
