/* ═══════════════════════════════════════════════
RESET & TOKENS
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding:
0; }
:root {
--blue: #00A3E4;
--blue-d: #007DB8;
--blue-l: #E0F5FD;
--bg: #FEFEFE;
--grey: #959595;
--dark: #1C1C2E;
--dark2: #252537;
--text: #222;
--textl: #666;
--border: #E8ECF0;
--card: #FFFFFF;
--sh: 0 2px 14px rgba(0,0,0,0.07);
--sh-h: 0 8px 32px rgba(0,163,228,0.20);
--r: 12px;
--rs: 8px;
--hh: 68px;
--tr: 0.22s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg);
color: var(--text); line-height: 1.6; -webkit-font-smoothing:
antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor:
pointer; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px;
border-radius: 4px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
/* ═══════════════════════════════════════════════
HEADER
═══════════════════════════════════════════════ */
.hdr {
position: fixed; top: 0; left: 0; right: 0;
height: var(--hh);
background: rgba(254,254,254,0.95);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
z-index: 1000; transition: box-shadow var(--tr);
}
.hdr.sc { box-shadow: 0 2px 24px rgba(0,0,0,0.09); }
.hdr-in { display: flex; align-items: center; justify-content:
space-between; height: 100%; gap: 16px; }
/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { flex-shrink: 0; display: block; height: 40px; width: auto;
max-width: 220px; object-fit: contain; }
/* Swap .logo-icon svg for <img src="logo.png" class="logo-icon"
alt="ИВЭЭЛ АЛДАР"> if using file */
.logo-txt .n { font-size: 15px; font-weight: 900; color: var(--dark);
line-height: 1.2; letter-spacing: 0.3px; }
.logo-txt .s { font-size: 9.5px; font-weight: 700; color: var(--blue);
text-transform: uppercase; letter-spacing: 0.8px; }
/* Nav */
.nav { display: flex; align-items: center; gap: 2px; flex: 1;
justify-content: center; }
.nav a {
padding: 7px 14px; font-size: 13.5px; font-weight: 500;
color: var(--textl); border-radius: 8px; transition: all var(--tr);
white-space: nowrap;
}
.nav a:hover { color: var(--blue); background: var(--blue-l); }
.nav a.on { color: var(--blue); background: var(--blue-l); }
/* Header right actions */
.hdr-act { display: flex; align-items: center; gap: 10px; flex-shrink:
0; }
.btn-cta {
padding: 8px 18px; background: var(--blue); color: #fff;
font-size: 13px; font-weight: 700; border-radius: 8px;
transition: all var(--tr); white-space: nowrap;
}
.btn-cta:hover { background: var(--blue-d); transform:
translateY(-1px); box-shadow: 0 4px 14px rgba(0,163,228,0.35); }
.cart-wrap { position: relative; }
.cart-btn {
width: 38px; height: 38px; border: 1.5px solid var(--border);
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
color: var(--textl); transition: all var(--tr);
}
.cart-btn:hover { border-color: var(--blue); color: var(--blue); }
.cart-badge {
position: absolute; top: -5px; right: -5px;
width: 17px; height: 17px; background: var(--blue); color: #fff;
font-size: 9px; font-weight: 800; border-radius: 50%;
display: none; align-items: center; justify-content: center; border: 2px
solid #fff;
}
.cart-badge.v { display: flex; }
/* Hamburger */
.hbg { display: none; flex-direction: column; gap: 5px; padding: 8px;
border-radius: 8px; }
.hbg:hover { background: var(--blue-l); }
.hbg span { display: block; width: 21px; height: 2px; background:
var(--dark); border-radius: 2px; transition: all var(--tr); }
.hbg.op span:nth-child(1) { transform: rotate(45deg) translate(5px,5px);
}
.hbg.op span:nth-child(2) { opacity: 0; }
.hbg.op span:nth-child(3) { transform: rotate(-45deg)
translate(5px,-5px); }
/* Mobile menu */
.mob-nav {
display: none; position: fixed;
top: var(--hh); left: 0; right: 0;
background: #fff; border-bottom: 1px solid var(--border);
padding: 10px 28px 18px; z-index: 999;
box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.mob-nav.op { display: block; }
.mob-nav a {
display: block; padding: 13px 0; font-size: 14.5px; font-weight: 500;
color: var(--text); border-bottom: 1px solid var(--border);
transition: color var(--tr);
}
.mob-nav a:last-child { border: none; }
.mob-nav a:hover { color: var(--blue); }
/* ═══════════════════════════════════════════════
PAGE LAYOUT (products start right below header)
═══════════════════════════════════════════════ */
.page-top {
padding-top: calc(var(--hh) + 32px);
padding-bottom: 20px;
background: #F3F7FA;
}
/* compact page header strip */
.page-strip {
display: flex; align-items: flex-end; justify-content: space-between;
flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
}
.page-strip-left .ptag {
font-size: 11px; font-weight: 800; text-transform: uppercase;
letter-spacing: 1.8px; color: var(--blue); margin-bottom: 4px;
}
.page-strip-left h1 {
font-size: clamp(20px, 2.6vw, 28px); font-weight: 900;
color: var(--dark); letter-spacing: -0.3px;
}
.page-strip-right { display: flex; align-items: center; gap: 10px;
flex-wrap: wrap; }
.contact-pill {
display: inline-flex; align-items: center; gap: 7px;
padding: 7px 14px; background: #fff; border: 1px solid var(--border);
border-radius: 100px; font-size: 12.5px; font-weight: 700; color:
var(--dark);
box-shadow: var(--sh); transition: all var(--tr);
}
.contact-pill:hover { border-color: var(--blue); color: var(--blue);
transform: translateY(-1px); }
.contact-pill .pi { width: 22px; height: 22px; background:
var(--blue-l); border-radius: 50%; display: flex; align-items: center;
justify-content: center; font-size: 11px; }
/* ═══════════════════════════════════════════════
TOOLBAR (filter + search)
═══════════════════════════════════════════════ */
#products { background: #F3F7FA; padding-bottom: 72px; }
.toolbar { display: flex; flex-direction: column; gap: 10px;
margin-bottom: 20px; }
.toolbar-top { display: flex; align-items: center; justify-content:
space-between; gap: 12px; flex-wrap: wrap; }
.toolbar-top .pcount { margin-bottom: 0; }
/* Scrollable filter row */
.ftabs-row {
overflow-x: auto; padding-bottom: 6px;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.ftabs-row::-webkit-scrollbar { height: 3px; }
.ftabs-row::-webkit-scrollbar-thumb { background: var(--border);
border-radius: 3px; }
.ftabs { display: flex; gap: 7px; flex-wrap: nowrap; width: max-content;
}
.ftab {
padding: 7px 16px; font-size: 12.5px; font-weight: 600;
border: 1.5px solid var(--border); border-radius: 100px;
background: #fff; color: var(--textl); transition: all var(--tr);
white-space: nowrap;
}
.ftab:hover { border-color: var(--blue); color: var(--blue); }
.ftab.on { background: var(--blue); border-color: var(--blue); color:
#fff; box-shadow: 0 4px 14px rgba(0,163,228,0.28); }
.srch-wrap {
display: flex; align-items: center; gap: 8px;
background: #fff; border: 1.5px solid var(--border);
border-radius: 100px; padding: 7px 15px; min-width: 200px;
transition: border-color var(--tr);
}
.srch-wrap:focus-within { border-color: var(--blue); }
.srch-wrap svg { width: 14px; height: 14px; color: var(--grey);
flex-shrink: 0; }
.srch-wrap input { border: none; outline: none; font-size: 13.5px;
color: var(--text); background: transparent; width: 100%; }
.srch-wrap input::placeholder { color: var(--grey); }
.pcount { font-size: 12.5px; color: var(--grey); font-weight: 500;
margin-bottom: 18px; }
.pcount span { color: var(--blue); font-weight: 800; }
/* ═══════════════════════════════════════════════
PRODUCT GRID
═══════════════════════════════════════════════ */
.pgrid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
gap: 16px;
}
/* ── Card ── */
.pcard {
background: var(--card); border: 1px solid var(--border);
border-radius: var(--r); overflow: hidden;
display: flex; flex-direction: column;
transition: all var(--tr); position: relative; cursor: pointer;
}
.pcard:hover { border-color: var(--blue); box-shadow: var(--sh-h);
transform: translateY(-4px); }
.pcard:hover .pcard-hover { opacity: 1; }
/* category badge */
.pbadge {
position: absolute; top: 10px; left: 10px;
font-size: 10px; font-weight: 800; padding: 3px 9px;
border-radius: 100px; text-transform: uppercase; letter-spacing: 0.4px;
z-index: 2;
}
.b-socket { background:#E3F2FD; color:#1565C0; }
.b-terminal { background:#E0F2F1; color:#00695C; }
.b-panel { background:#EDE7F6; color:#4527A0; }
.b-tool { background:#ECEFF1; color:#455A64; }
.b-contactor { background:#E8EAF6; color:#283593; }
.b-protect { background:#FFF3E0; color:#C26000; }
.b-meter { background:#F3E5F5; color:#6A1B9A; }
.b-cable-acc { background:#E8F5E9; color:#1B5E20; }
.b-cable { background:#F1F8E9; color:#33691E; }
.b-connector { background:#FFFDE7; color:#F57F17; }
.b-ground { background:#FBE9E7; color:#BF360C; }
.b-spare { background:#F5F5F5; color:#546E7A; }
.b-shade { background:#ECEFF1; color:#37474F; }
.b-inverter { background:#E0F7FA; color:#006064; }
.b-high { background:#FCE4EC; color:#880E4F; }
.b-button { background:#E8F5E9; color:#2E7D32; }
.b-relay { background:#EDE7F6; color:#311B92; }
.b-breaker { background:#E3F2FD; color:#0D47A1; }
.b-light { background:#FFFDE7; color:#E65100; }
/* stock dot on card */
.pcard-stk {
position: absolute; top: 10px; right: 10px; z-index: 2;
width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff;
}
.stk-in { background: #43A047; }
.stk-lo { background: #FB8C00; }
.stk-out { background: #E53935; }
/* hover overlay "дэлгэрэнгүй" */
.pcard-hover {
position: absolute; inset: 0; background: rgba(0,163,228,0.08);
display: flex; align-items: center; justify-content: center;
opacity: 0; transition: opacity var(--tr); z-index: 3; pointer-events:
none;
}
.pcard-hover span {
background: var(--blue); color: #fff;
padding: 8px 18px; border-radius: 100px;
font-size: 13px; font-weight: 700; box-shadow: 0 4px 14px
rgba(0,163,228,0.4);
}
/* card image */
.pimg {
width: 100%; height: 168px;
background: linear-gradient(135deg, #EDF2F7, #DDE6F0);
display: flex; align-items: center; justify-content: center; font-size:
52px;
flex-shrink: 0;
}
.pimg img { width: 100%; height: 100%; object-fit: cover; }
/* card body */
.pbody { padding: 14px; flex: 1; display: flex; flex-direction: column;
}
.psku { font-size: 10px; font-weight: 700; color: var(--grey);
text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 4px; }
.pname { font-size: 13.5px; font-weight: 800; color: var(--dark);
line-height: 1.4; margin-bottom: 4px; }
.pspec { font-size: 12px; color: var(--textl); line-height: 1.5; flex:
1; margin-bottom: 10px; }
.pfoot {
display: flex; align-items: center; justify-content: space-between;
padding-top: 10px; border-top: 1px solid var(--border); gap: 8px;
}
.pprice { font-size: 12px; color: var(--grey); font-style: italic; }
.pprice.has-price { font-size: 14px; font-weight: 800; color:
var(--blue); font-style: normal; }
.stk-lbl { font-size: 10.5px; font-weight: 700; padding: 2px 8px;
border-radius: 5px; }
.sl-in { background: #E8F5E9; color: #2E7D32; }
.sl-lo { background: #FFF8E1; color: #E65100; }
.sl-out { background: #FCE4EC; color: #B71C1C; }
/* load more */
.load-wrap { text-align: center; margin-top: 40px; }
.btn-more {
padding: 11px 34px; background: #fff;
border: 2px solid var(--blue); color: var(--blue);
font-size: 13.5px; font-weight: 800; border-radius: 100px;
transition: all var(--tr);
}
.btn-more:hover { background: var(--blue); color: #fff; box-shadow: 0
4px 18px rgba(0,163,228,0.3); }
/* ═══════════════════════════════════════════════
PRODUCT DETAIL --- SLIDE-OUT PANEL (desktop)
\+ FULL-SCREEN MODAL (mobile)
═══════════════════════════════════════════════ */
/* Backdrop */
.det-backdrop {
display: none; position: fixed; inset: 0;
background: rgba(0,0,0,0.42); z-index: 2000;
animation: fadeB .22s ease;
}
.det-backdrop.op { display: block; }
@keyframes fadeB { from { opacity: 0; } to { opacity: 1; } }
/* Panel --- slides in from right on desktop */
.det-panel {
position: fixed; top: 0; right: -100%; bottom: 0;
width: min(560px, 100vw);
background: var(--bg);
z-index: 2001;
display: flex; flex-direction: column;
box-shadow: -8px 0 48px rgba(0,0,0,0.18);
transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
border-radius: 16px 0 0 16px;
}
.det-panel.op { right: 0; }
/* Mobile: full-screen */
@media (max-width: 600px) {
.det-panel {
width: 100%; border-radius: 0;
right: unset; bottom: -100%; top: unset;
height: 100dvh; height: 100vh;
transition: bottom 0.32s cubic-bezier(0.4,0,0.2,1);
}
.det-panel.op { bottom: 0; right: unset; }
}
/* Panel header */
.det-head {
display: flex; align-items: center; justify-content: space-between;
padding: 18px 24px 0; flex-shrink: 0;
}
.det-close {
width: 34px; height: 34px; border-radius: 50%;
background: var(--border); display: flex; align-items: center;
justify-content: center; font-size: 18px; color: var(--textl);
transition: all var(--tr); flex-shrink: 0;
}
.det-close:hover { background: var(--dark); color: #fff; }
/* scrollable body */
.det-body { flex: 1; overflow-y: auto; padding: 0 24px 24px; }
.det-body::-webkit-scrollbar { width: 4px; }
.det-body::-webkit-scrollbar-track { background: transparent; }
.det-body::-webkit-scrollbar-thumb { background: var(--border);
border-radius: 4px; }
/* Image gallery */
.det-gallery { position: relative; margin: 16px 0 20px; border-radius:
14px; overflow: hidden; background:
linear-gradient(135deg,#EDF2F7,#DDE6F0); aspect-ratio:16/9;
display:flex; align-items:center; justify-content:center; }
.det-gallery .main-em { font-size: 80px; }
.det-gallery img { width: 100%; height: 100%; object-fit: cover; }
.gal-badge {
position: absolute; bottom: 12px; left: 12px;
font-size: 11px; font-weight: 800; padding: 4px 10px;
border-radius: 100px; text-transform: uppercase;
}
/* meta block */
.det-sku { font-size: 11px; font-weight: 700; color: var(--grey);
text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.det-name { font-size: 20px; font-weight: 900; color: var(--dark);
line-height: 1.25; margin-bottom: 10px; }
.det-status-row { display: flex; align-items: center; gap: 10px;
margin-bottom: 16px; flex-wrap: wrap; }
.det-price { font-size: 18px; font-weight: 900; color: var(--blue); }
.det-price.quote { font-size: 13px; font-weight: 600; color:
var(--grey); font-style: italic; }
.det-stk-badge { font-size: 12px; font-weight: 700; padding: 4px 12px;
border-radius: 6px; }
.dsb-in { background: #E8F5E9; color: #2E7D32; }
.dsb-lo { background: #FFF8E1; color: #E65100; }
.dsb-out { background: #FCE4EC; color: #B71C1C; }
/* description */
.det-desc { font-size: 14px; color: var(--textl); line-height: 1.78;
margin-bottom: 20px; }
/* Specs table */
.specs-title { font-size: 12px; font-weight: 800; text-transform:
uppercase; letter-spacing: 1.2px; color: var(--blue); margin-bottom:
10px; }
.specs-table { width: 100%; border-collapse: collapse; margin-bottom:
22px; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 9px 4px; font-size: 13.5px; vertical-align:
top; }
.specs-table .sk { color: var(--textl); font-weight: 500; width: 48%; }
.specs-table .sv { color: var(--dark); font-weight: 700; }
/* quick contact */
.det-qcontact {
background: var(--blue-l); border-radius: 12px; padding: 16px;
margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px;
}
.det-qcontact .qc-label { font-size: 11.5px; font-weight: 700; color:
var(--blue-d); text-transform: uppercase; letter-spacing: 0.7px;
margin-bottom: 2px; }
.det-qcontact .qc-links { display: flex; gap: 10px; flex-wrap: wrap; }
.qc-link {
display: inline-flex; align-items: center; gap: 7px;
padding: 8px 14px; background: #fff; border-radius: 100px;
font-size: 13px; font-weight: 700; color: var(--dark);
box-shadow: var(--sh); transition: all var(--tr);
}
.qc-link:hover { color: var(--blue); transform: translateY(-1px); }
/* action buttons */
.det-actions { display: flex; gap: 10px; }
.btn-quote {
flex: 1; padding: 13px; background: var(--blue); color: #fff;
font-size: 14px; font-weight: 800; border-radius: 10px;
transition: all var(--tr); text-align: center;
}
.btn-quote:hover { background: var(--blue-d); box-shadow: 0 4px 14px
rgba(0,163,228,0.35); }
.btn-addcart {
flex: 1; padding: 13px; background: #fff; color: var(--dark);
font-size: 14px; font-weight: 800; border-radius: 10px;
border: 2px solid var(--border); transition: all var(--tr);
text-align: center;
}
.btn-addcart:hover { border-color: var(--blue); color: var(--blue); }
/* sticky action bar at bottom */
.det-footer {
padding: 16px 24px;
border-top: 1px solid var(--border);
background: rgba(254,254,254,0.96);
backdrop-filter: blur(10px);
flex-shrink: 0;
}
/* ═══════════════════════════════════════════════
ABOUT SECTION
═══════════════════════════════════════════════ */
#about { background: var(--bg); padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
align-items: center; }
.ab-tag { font-size: 11px; font-weight: 800; text-transform: uppercase;
letter-spacing: 1.8px; color: var(--blue); margin-bottom: 8px; }
.ab-title { font-size: clamp(22px,2.8vw,32px); font-weight: 900; color:
var(--dark); letter-spacing: -0.3px; margin-bottom: 18px; }
.ab-body p { font-size: 14.5px; color: var(--textl); line-height: 1.85;
margin-bottom: 16px; }
.ab-body strong { color: var(--dark); }
.src-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.src-tag { display: flex; align-items: center; gap: 6px; padding: 7px
13px; background: var(--blue-l); border-radius: 8px; font-size: 13px;
font-weight: 700; color: var(--blue-d); }
.ab-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.acard {
background: #fff; border: 1px solid var(--border); border-radius:
var(--r);
padding: 20px 16px; text-align: center; box-shadow: var(--sh);
transition: transform var(--tr);
}
.acard:hover { transform: translateY(-3px); }
.acard .ai { width: 42px; height: 42px; background: var(--blue-l);
border-radius: 10px; display: flex; align-items: center;
justify-content: center; margin: 0 auto 8px; font-size: 19px; }
.acard .an { font-size: 22px; font-weight: 900; color: var(--dark); }
.acard .al { font-size: 12px; color: var(--grey); line-height: 1.4;
margin-top: 3px; }
.acard.feat { grid-column: span 2; background: var(--dark);
border-color: var(--dark); }
.acard.feat .an { color: var(--blue); font-size: 28px; }
.acard.feat .al { color: rgba(255,255,255,0.5); }
.acard.feat .ai { background: rgba(0,163,228,0.18); }
/* ═══════════════════════════════════════════════
CONTACT / FOOTER
═══════════════════════════════════════════════ */
#contact { background: var(--dark); color: #fff; padding: 64px 0 0; }
.cg { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
padding-bottom: 48px; align-items: start; }
.cg-2col { grid-template-columns: 1.4fr 1fr !important; align-items: start !important; }
.cg-3col { grid-template-columns: 1.5fr 1fr 1fr !important; align-items: start !important; }
.cb-logo { width: 40px; height: 40px; background: var(--blue);
border-radius: 10px; display: flex; align-items: center;
justify-content: center; font-size: 13px; font-weight: 900; color:
#fff; margin-bottom: 14px; }
.cb-name { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.cb-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height:
1.75; max-width: 250px; }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.soc { width: 34px; height: 34px; border-radius: 8px; background:
rgba(255,255,255,0.08); display: flex; align-items: center;
justify-content: center; color: #fff; transition: all var(--tr);
font-size: 14px; }
.soc:hover { transform: translateY(-2px); }
.soc.fb { background: #1877F2; }
.soc.fb:hover { background: #1464d0; }
.ccol h4 { font-size: 10px; font-weight: 800; text-transform: uppercase;
letter-spacing: 1.8px; color: rgba(255,255,255,0.35); margin-bottom:
18px; }
.citems { display: flex; flex-direction: column; gap: 14px; }
.citem { display: flex; align-items: flex-start; gap: 10px; }
.cic { width: 30px; height: 30px; background: rgba(0,163,228,0.15);
border-radius: 8px; display: flex; align-items: center; justify-content:
center; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.citx .cil { font-size: 10px; color: rgba(255,255,255,0.35);
margin-bottom: 2px; }
.citx .civ { font-size: 13px; font-weight: 700; color: #fff;
line-height: 1.5; }
.citx .civ a { color: #fff; transition: color var(--tr); }
.citx .civ a:hover { color: var(--blue); }
.fbot { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0;
display: flex; align-items: center; justify-content: space-between;
font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap:
8px; }
/* ═══════════════════════════════════════════════
FLOATING SIDEBAR (desktop only)
═══════════════════════════════════════════════ */
.fsb { position: fixed; right: 0; top: 50%; transform: translateY(-50%);
z-index: 900; display: flex; flex-direction: column; gap: 2px; }
.fb {
width: 48px; background: #fff; border: 1px solid var(--border);
border-right: none;
padding: 10px 0; display: flex; flex-direction: column; align-items:
center; gap: 4px;
color: var(--textl); font-size: 9.5px; font-weight: 600; border-radius:
9px 0 0 9px;
transition: all var(--tr);
}
.fb:hover { background: var(--blue); color: #fff; border-color:
var(--blue); }
.fb svg { width: 17px; height: 17px; }
/* scroll-to-top */
.stpb { position: fixed; bottom: 26px; right: 20px; width: 40px; height:
40px; background: var(--blue); color: #fff; border-radius: 50%;
display: flex; align-items: center; justify-content: center; box-shadow:
0 4px 18px rgba(0,163,228,0.38); opacity: 0; pointer-events: none;
z-index: 800; transition: all var(--tr); }
.stpb.v { opacity: 1; pointer-events: all; }
.stpb:hover { transform: translateY(-3px); }
/* ═══════════════════════════════════════════════
INQUIRY MODAL (quick form)
═══════════════════════════════════════════════ */
.inq-overlay { display: none; position: fixed; inset: 0; background:
rgba(0,0,0,0.48); z-index: 3000; align-items: center; justify-content:
center; padding: 24px; }
.inq-overlay.op { display: flex; }
.inq-modal {
background: #fff; border-radius: 18px; padding: 28px;
max-width: 440px; width: 100%; position: relative;
box-shadow: 0 28px 64px rgba(0,0,0,0.22);
animation: slideUp .24s ease;
}
@keyframes slideUp { from { opacity:0; transform:translateY(18px); } to
{ opacity:1; transform:translateY(0); } }
.inq-modal h3 { font-size: 18px; font-weight: 900; color: var(--dark);
margin-bottom: 4px; }
.inq-modal .isub { font-size: 13px; color: var(--textl); margin-bottom:
18px; }
.iprod { background: var(--blue-l); border-radius: 9px; padding: 10px
13px; margin-bottom: 16px; font-size: 13px; font-weight: 700; color:
var(--blue-d); }
.fg { margin-bottom: 12px; }
.fg label { display: block; font-size: 11px; font-weight: 700; color:
var(--textl); text-transform: uppercase; letter-spacing: 0.5px;
margin-bottom: 4px; }
.fg input, .fg textarea { width: 100%; padding: 9px 12px; border: 1.5px
solid var(--border); border-radius: 8px; font-size: 13.5px; color:
var(--text); font-family: inherit; outline: none; transition:
border-color var(--tr); }
.fg input:focus, .fg textarea:focus { border-color: var(--blue); }
.fg textarea { height: 74px; resize: none; }
.iacts { display: flex; gap: 9px; margin-top: 16px; }
.btn-isub { flex: 1; padding: 11px; background: var(--blue); color:
#fff; font-size: 13.5px; font-weight: 800; border-radius: 9px;
transition: all var(--tr); }
.btn-isub:hover { background: var(--blue-d); }
.btn-ican { padding: 11px 16px; border: 1.5px solid var(--border);
border-radius: 9px; font-size: 13.5px; font-weight: 600; color:
var(--textl); transition: all var(--tr); }
.btn-ican:hover { border-color: var(--dark); color: var(--dark); }
.imcls { position: absolute; top: 13px; right: 13px; width: 28px;
height: 28px; background: var(--border); border-radius: 50%; display:
flex; align-items: center; justify-content: center; font-size: 16px;
color: var(--textl); transition: all var(--tr); }
.imcls:hover { background: var(--dark); color: #fff; }
/* ═══════════════════════════════════════════════
TOAST
═══════════════════════════════════════════════ */
.toast { position: fixed; bottom: 76px; left: 50%; transform:
translateX(-50%); background: var(--dark); color: #fff; padding: 10px
22px; border-radius: 100px; font-size: 13.5px; font-weight: 600;
z-index: 9999; box-shadow: 0 8px 28px rgba(0,0,0,0.28); pointer-events:
none; animation: toastIn .3s ease; white-space: nowrap; }
@keyframes toastIn { from { opacity:0; transform:translate(-50%,10px);
} to { opacity:1; transform:translate(-50%,0); } }
/* ═══════════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
.about-grid { grid-template-columns: 1fr; gap: 36px; }
.cg { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
:root { --hh: 62px; }
.nav { display: none; }
.btn-cta { display: none; }
.hbg { display: flex; }
.toolbar { flex-direction: column; align-items: stretch; }
.srch-wrap { min-width: unset; }
.pgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
.cg { grid-template-columns: 1fr; gap: 28px; }
.fsb { display: none; }
.page-strip { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
.pgrid { grid-template-columns: 1fr; }
.ab-cards { grid-template-columns: 1fr; }
.acard.feat { grid-column: span 1; }
.contact-pill span:last-child { display: none; }
}