/* ==========================================================================
   Dassindo by PSWEBMEDIA.COM
   Palette:  --blue #0070B9 (primary)   --yellow #FFFF00 (accent)
             everything else neutral: black / gray / white
   Type:     Oswald (display) / Inter (body) / IBM Plex Mono (data)
   ========================================================================== */

:root{
  --blue:#0070B9;
  --blue-dark:#00568D;
  --blue-light:#2B8FCB;
  --yellow:#FFFF00;
  --yellow-dark:#E6E600;

  /* legacy names kept so the rest of the sheet reads the same;
     values now point at the blue/yellow/neutral palette above */
  --navy:#0070B9;
  --navy-deep:#101114;
  --steel:#0070B9;
  --steel-light:#2B8FCB;
  --red:#FFFF00;
  --red-dark:#E6E600;
  --ink:#17181A;
  --paper:#F4F5F6;
  --paper-dim:#EBECEE;
  --line:#D8DBDF;
  --white:#FFFFFF;
  --muted:#5B6169;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --wrap: 1220px;
  --header-h: 118px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html, body{ overflow-x:hidden; max-width:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; background:none; border:none; color:inherit; }
input{ font-family:inherit; }

.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 28px;
}

h1,h2,h3{
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:0.01em;
  line-height:1.05;
  margin:0;
  color:var(--ink);
}

.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--blue);
  margin:0 0 10px;
}
.eyebrow-light{ color:var(--yellow); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 22px;
  font-family:var(--font-display);
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  border-radius:2px;
  border:1px solid transparent;
  transition:transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--yellow); color:var(--ink); }
.btn-primary:hover{ background:var(--yellow-dark); }
.btn-outline{ border-color:rgba(255,255,255,0.55); color:var(--white); }
.btn-outline:hover{ background:rgba(255,255,255,0.1); }
.btn-outline-blue{ border:1px solid var(--blue); color:var(--blue); }
.btn-outline-blue:hover{ background:rgba(0,112,185,0.08); }
.btn-ghost{ border-color:var(--line); color:var(--ink); }
.btn-lg{ padding:16px 30px; font-size:15px; }

.link-arrow{
  font-family:var(--font-display);
  font-size:13px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--steel);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease, color .2s ease;
}
.link-arrow:hover{ color:var(--ink); border-color:var(--ink); }

/* ---------- utility bar ---------- */
.utility-bar{
  background:var(--navy-deep);
  color:#B9C3D6;
  font-size:12.5px;
}
.utility-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:36px;
}
.utility-left a{ margin-right:20px; opacity:.85; transition:opacity .2s; }
.utility-left a:hover{ opacity:1; color:var(--white); }
.utility-right{ position:relative; }
.lang-switch{
  display:flex; align-items:center; gap:4px;
  font-size:12.5px; letter-spacing:.04em; color:#B9C3D6;
}
.lang-switch:hover{ color:var(--white); }
.chev{ font-size:10px; }
.lang-menu{
  position:absolute; right:0; top:28px;
  background:var(--navy-deep);
  border:1px solid rgba(255,255,255,0.1);
  min-width:160px;
  padding:6px 0;
  border-radius:3px;
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
  z-index:60;
}
.lang-menu.is-open{ opacity:1; visibility:visible; transform:translateY(0); }
.lang-menu a{ display:block; padding:8px 16px; font-size:13px; color:#D8DEEA; }
.lang-menu a:hover{ background:rgba(255,255,255,0.06); color:var(--white); }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:var(--navy);
  box-shadow:0 1px 0 rgba(255,255,255,0.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:82px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  color:var(--white);
}
.brand img{
  /*height:44px;*/
  width:auto;
  /*max-width:170px;*/
  display:block;
}
.brand-mark{ color:var(--red); display:flex; }
.brand-word{
  font-family:var(--font-display);
  font-size:20px;
  letter-spacing:0.03em;
  font-weight:600;
}
.brand-word-accent{ color:var(--red); }

.main-nav ul{ display:flex; align-items:center; gap:6px; }
.main-nav > ul > li{ position:relative; }
.nav-toggle,
.main-nav > ul > li > a{
  display:flex; align-items:center;
  height:82px;
  padding:0 16px;
  font-family:var(--font-display);
  font-size:14px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:#D8DEEA;
  border-bottom:2px solid transparent;
  transition:color .2s ease, border-color .2s ease;
}
    .nav-toggle:hover,
    .nav-toggle.selected,
    .main-nav > ul > li > a:hover,
    .main-nav > ul > li > a.selected {
        color: var(--white);
        border-color: var(--red);
    }

.dropdown{
  position:absolute; top:82px; left:0;
  min-width:240px;
  background:var(--white);
  border-top:3px solid var(--blue);
  box-shadow:0 18px 30px rgba(8,21,39,0.18);
  padding:10px 0;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity:1; visibility:visible; transform:translateY(0);
}
.dropdown a{
  display:block;
  padding:10px 20px;
  font-size:14px;
  color:var(--ink);
  border-left:2px solid transparent;
}
.dropdown a:hover{ background:var(--paper); border-color:var(--blue); color:var(--blue-dark); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.icon-btn{
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  color:#D8DEEA;
  border-radius:50%;
  transition:background .2s ease, color .2s ease;
}
.icon-btn:hover{ background:rgba(255,255,255,0.08); color:var(--white); }

.menu-toggle{
  display:none;
  width:38px; height:38px;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.menu-toggle span{
  width:22px; height:2px; background:var(--white); border-radius:1px;
  transition:transform .2s ease, opacity .2s ease;
}

.search-panel{
  max-height:0; overflow:hidden;
  background:var(--navy-deep);
  transition:max-height .25s ease;
}
.search-panel.is-open{ max-height:90px; }
.search-panel .wrap{
  display:flex; gap:12px; align-items:center; padding-top:16px; padding-bottom:16px;
}
.search-panel input{
  flex:1;
  height:44px;
  border:none; border-radius:2px;
  padding:0 16px;
  font-size:15px;
}
.search-panel .btn-ghost{ border-color:rgba(255,255,255,0.35); color:var(--white); }
.search-panel form {
    flex: 1;
    display: flex;
    gap: 10px;
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  background:
    radial-gradient(ellipse at 78% 20%, rgba(255,255,0,0.14), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 65%, #08090B 100%);
  color:var(--white);
  padding:120px 0 130px;
  overflow:hidden;

    background-image: url('../../../files/people3.jpg');
    background-position: center top;
    background-size: cover;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 100% );
        z-index: 1;
        pointer-events: none;
    }

.hero-scanline{
  position:absolute; left:0; right:0; top:0; height:100%;
  background:linear-gradient(180deg, rgba(255,255,0,0) 0%, rgba(255,255,0,0.65) 50%, rgba(255,255,0,0) 100%);
  height:3px;
  animation:scan 5.5s linear infinite;
  box-shadow:0 0 24px 2px rgba(255,255,0,0.55);
}
@keyframes scan{
  0%{ top:6%; opacity:0; }
  8%{ opacity:1; }
  92%{ opacity:1; }
  100%{ top:96%; opacity:0; }
}
.hero-inner{ max-width:720px; position:relative; z-index:2; }
.hero h1{
  color:var(--white);
  font-size:clamp(40px, 6vw, 72px);
  margin:0 0 22px;
}
.hero-sub{
  font-size:17px;
  line-height:1.65;
  color:#C3CBDC;
  max-width:560px;
  margin:0 0 34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero {
    background-image: url('../../../files/people3.jpg');
    background-position: center top;
    background-size: cover;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 100% );
        z-index: 1;
        pointer-events: none;
    }

.scroll-cue{
  position:absolute; left:50%; bottom:30px; transform:translateX(-50%);
  color:rgba(255,255,255,0.55);
  animation:bob 2s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{ transform:translate(-50%,0); }
  50%{ transform:translate(-50%,7px); }
}

/* ---------- stats bar ---------- */
.stats-bar{
  background:var(--steel);
  color:var(--white);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat{
  padding:34px 20px;
  text-align:center;
  border-left:1px solid rgba(255,255,255,0.14);
}
.stat:first-child{ border-left:none; }
.stat-num{
  display:block;
  font-family:var(--font-mono);
  font-size:34px;
  font-weight:500;
  letter-spacing:0.01em;
}
.stat-label{
  display:block;
  margin-top:6px;
  font-size:12.5px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:#C3D0E6;
}

/* ---------- section shell ---------- */
section{ padding:88px 0; }
.section-head{ max-width:640px; margin:0 0 44px; }
.section-head h2{ font-size:clamp(26px,3.4vw,38px); }
.section-head.split{
  max-width:none;
  display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap;
}

/* ---------- product finder ---------- */
.finder{ background:var(--paper); }
.finder-tabs{
  display:flex; flex-wrap:wrap; gap:2px;
  border-bottom:1px solid var(--line);
  margin-bottom:36px;
}
.finder-tab{
  padding:14px 22px;
  font-family:var(--font-display);
  font-size:13.5px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--muted);
  border-bottom:3px solid transparent;
  margin-bottom:-1px;
  transition:color .2s ease, border-color .2s ease;
}
.finder-tab:hover{ color:var(--steel); }
.finder-tab.is-active{ color:var(--blue); border-color:var(--blue); }

.finder-panel{
  display:none;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.finder-panel.is-active{ display:grid; }

.product-card{
  display:flex; gap:20px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:3px;
  padding:26px;
  transition:box-shadow .2s ease, transform .2s ease;
}
.product-card:hover{ box-shadow:0 14px 30px rgba(11,30,61,0.1); transform:translateY(-2px); }
.product-thumb{
  flex:none;
  width:150px; height:150px;
  border-radius:3px;
  background:linear-gradient(150deg, var(--blue), var(--navy-deep));
  position:relative;
}
.product-thumb::after{
  content:"";
  position:absolute; inset:0; margin:auto;
  width:26px; height:26px;
/*  background:rgba(255,255,255,0.9);*/
}
.product-body h3{ font-size:18px; margin-bottom:8px; }
.product-body p{ font-size:14.5px; color:var(--muted); line-height:1.6; margin:0 0 14px; }

/* ---------- industries ---------- */
.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.industry-card{
  background:var(--white);
  border:1px solid var(--line);
  border-top:3px solid var(--steel);
  padding:30px 24px;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.industry-card:hover{
  border-top-color:var(--red);
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(11,30,61,0.08);
}
.industry-icon{
  width:42px; height:42px;
  border-radius:50%;
  background:var(--paper-dim);
  border:1px solid var(--line);
  margin-bottom:18px;
  position:relative;
}
.industry-icon::after{
  content:"";
  position:absolute; inset:0; margin:auto;
  width:32px; height:32px;
  background:var(--steel);
}
.industry-card h3{ font-size:17px; margin-bottom:8px; }
.industry-card p{ font-size:14px; color:var(--muted); line-height:1.6; margin:0; }

/* ---------- news ---------- */
.news{ background:var(--paper); }
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.news-card{
  background:var(--white);
  border:1px solid var(--line);
  padding:26px;
  display:flex; flex-direction:column;
  transition:box-shadow .2s ease, transform .2s ease;
}
.news-card:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(11,30,61,0.08); }
.news-tag{
  align-self:flex-start;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--ink);
  background:var(--yellow);
  padding:4px 10px;
  border-radius:2px;
  margin-bottom:14px;
}
.news-card time{ font-size:12.5px; color:var(--muted); margin-bottom:10px; }
.news-card h3{ font-size:17px; margin:0 0 10px; text-transform:none; letter-spacing:0; }
.news-card p{ font-size:14px; color:var(--muted); line-height:1.6; margin:0; }

/* ---------- cta banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--navy-deep), var(--blue));
  color:var(--white);
}
.cta-inner{
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-banner h2{ color:var(--white); font-size:clamp(24px,3vw,34px); margin-bottom:10px; }
.cta-sub{ color:rgba(255,255,255,0.88); max-width:480px; margin:0; font-size:15px; line-height:1.6; }

/* ---------- footer ---------- */
.site-footer{ background:var(--navy-deep); color:#B9C3D6; padding: 0 20px; }
.footer-top{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;
  gap:36px;
  padding:70px 0 50px;
}
.footer-brand h3 {
    font-size: 17px;
    color: var(--white);
    margin: 10px 0 18px;
}
.footer-brand p{ font-size:14px; line-height:1.6; margin:16px 0 22px; max-width:280px; }
.footer-brand .brand{ margin-bottom:4px; }
.newsletter label{ display:block; font-size:12.5px; letter-spacing:.03em; margin-bottom:10px; color:#D8DEEA; }
.newsletter-row{ display:flex; gap:8px; flex-wrap: wrap; }
.newsletter-row input{
  flex:1; min-width:0;
  height:42px; border:1px solid rgba(255,255,255,0.18); background:rgba(255,255,255,0.05);
  border-radius:2px; padding:0 14px; color:var(--white); font-size:14px;
}
.newsletter-row input::placeholder{ color:#7C88A3; }
.newsletter-msg{ min-height:18px; font-size:12.5px; margin:10px 0 0; color:var(--blue-light); }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14px; color:#B9C3D6; transition:color .2s ease; }
.footer-col a:hover{ color:var(--white); }

/*.social-row{ display:flex; gap:10px; }
.social-icon{
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  position:relative;
  transition:background .2s ease, border-color .2s ease;
}
.social-icon:hover{ background:rgba(0,112,185,0.3); border-color:var(--blue); }
.social-icon::after{
  content:"";
  position:absolute; inset:0; margin:auto;
  width:14px; height:14px;
  background:#D8DEEA;
  border-radius:1px;
}*/

.social-row {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #D8DEEA;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

    .social-icon:hover {
        background: rgba(0,112,185,0.3);
        border-color: var(--blue);
        color: var(--white);
    }

.contact-section .social-icon {
    color: var(--ink);
}

.footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding:22px 0;
  font-size:12.5px;
}
.footer-legal{ display:flex; gap:20px; }
.footer-legal a{ color:#8B97AE; }
.footer-legal a:hover{ color:var(--white); }

/* ---------- back to top ---------- */
.back-to-top{
  position:fixed; right:24px; bottom:24px;
  width:46px; height:46px;
  background:var(--navy);
  color:var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(8,21,39,0.35);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s, background .2s ease, color .2s ease;
  z-index:40;
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--yellow); color:var(--ink); }

/* ---------- focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid var(--red);
  outline-offset:2px;
}

/* ---------- page hero (subpages, e.g. About) ---------- */
.page-hero{
  position:relative;
  background:linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 70%, #08090B 100%);
  color:var(--white);
  padding:72px 0 76px;
  overflow:hidden;
}
.page-hero .hero-scanline{ box-shadow:0 0 18px 1px rgba(255,255,0,0.5); }
.breadcrumb{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.06em;
  color:#AFC2D8;
  margin:0 0 18px;
  position:relative; z-index:2;
}
.breadcrumb a{ color:#AFC2D8; }
.breadcrumb a:hover{ color:var(--steel); }
.breadcrumb span{ color:var(--yellow); }
.page-hero h1{
  color:var(--white);
  font-size:clamp(32px,5vw,54px);
  max-width:680px;
  position:relative; z-index:2;
  margin:0 0 16px;
}
.page-hero .hero-sub{
  max-width:600px;
  position:relative; z-index:2;
  margin:0;
}

/* ---------- split section (mission / vision) ---------- */
.split-section .wrap{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.split-media{
  /*aspect-ratio:4/3;*/
  border-radius:3px;
  /*background:linear-gradient(150deg, var(--blue) 0%, var(--navy-deep) 100%);*/
  position:relative;
  overflow:hidden;
}
.split-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,0,0) 0%, rgba(255,255,0,0.5) 50%, rgba(255,255,0,0) 100%);
  height:3px; top:30%;
  animation:scan 4.5s linear infinite;
}
.split-content .eyebrow{ margin-bottom:12px; }
.split-content h2{ font-size:clamp(24px,3.2vw,34px); margin-bottom:18px; }
.split-content p{ font-size:15px; line-height:1.75; color:var(--muted); margin:0 0 16px; }
.split-content p:last-child{ margin-bottom:0; }
.split-section.reverse .wrap{ grid-template-columns:1.1fr 0.9fr; }
.split-section.reverse .split-media{ order:2; }
.split-section.reverse .split-content{ order:1; }

/* ---------- timeline ---------- */
.timeline{ background:var(--paper); }
.timeline-list{
  position:relative;
  max-width:840px;
  margin:0 auto;
  padding-left:28px;
  border-left:2px solid var(--line);
}
.timeline-item{
  position:relative;
  padding:0 0 42px 28px;
}
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:"";
  position:absolute;
  left:-35px; top:4px;
  width:12px; height:12px;
  border-radius:50%;
  background:var(--yellow);
  border:2px solid var(--blue);
}
.timeline-year{
  display:inline-block;
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:0.05em;
  color:var(--blue);
  background:var(--white);
  border:1px solid var(--line);
  padding:3px 10px;
  border-radius:2px;
  margin-bottom:10px;
}
.timeline-item h3{ font-size:18px; margin:0 0 8px; text-transform:none; letter-spacing:0; }
.timeline-item p{ font-size:14.5px; color:var(--muted); line-height:1.7; margin:0; max-width:600px; }

/* ---------- team ---------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.team-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:3px;
  overflow:hidden;
  transition:box-shadow .2s ease, transform .2s ease;
}
.team-card:hover{ transform:translateY(-3px); box-shadow:0 16px 30px rgba(11,30,61,0.1); }
.team-avatar{
  aspect-ratio:1;
  background:linear-gradient(150deg, var(--blue), var(--navy-deep));
  position:relative;
}
.team-avatar::after{
  content:"";
  position:absolute; left:50%; bottom:-18%; transform:translateX(-50%);
  width:68%; height:70%;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
}
.team-body{ padding:20px 22px 24px; }
.team-body h3{ font-size:16.5px; margin:0 0 4px; text-transform:none; letter-spacing:0; }
.team-role{
  display:block;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.04em;
  color:var(--blue);
  margin-bottom:12px;
}
.team-body p{ font-size:13.5px; color:var(--muted); line-height:1.65; margin:0; }

/* ---------- stat-strip (compact re-use of stats bar tokens on light bg) ---------- */
.value-note{
  max-width:760px;
  margin:0 auto 44px;
  text-align:center;
  color:var(--muted);
  font-size:15.5px;
  line-height:1.7;
}

/* ---------- contact page ---------- */
.contact-section .wrap.contact-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:44px;
  align-items:start;
}
.contact-form-card{
  background:var(--white);
  border:1px solid var(--line);
  border-top:3px solid var(--blue);
  border-radius:3px;
  padding:40px;
}
.contact-form-card h2{ font-size:clamp(22px,3vw,30px); margin:0 0 12px; }
.contact-form-lead{ font-size:14.5px; color:var(--muted); line-height:1.65; margin:0 0 28px; }

.contact-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.form-field{ margin-bottom:18px; }
.form-field label{
  display:block;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:2px;
  padding:11px 14px;
  font-size:14.5px;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(0,112,185,0.15);
}
.form-field textarea{ resize:vertical; min-height:120px; }
.form-msg{ min-height:20px; font-size:13px; margin:14px 0 0; color:var(--blue-dark); }

.contact-info{ display:flex; flex-direction:column; gap:30px; }
.info-block .eyebrow{ margin-bottom:8px; }
.info-block h3{ font-size:17px; margin:0 0 8px; }
.info-block p{ font-size:14.5px; color:var(--muted); line-height:1.7; margin:0 0 6px; }
.info-block .social-row{ margin-top:6px; }
.info-block .social-icon{
  background:var(--paper-dim);
  border-color:var(--line);
}
.info-block .social-icon:hover{ background:rgba(0,112,185,0.12); border-color:var(--blue); }
.info-block .social-icon::after{ background:var(--blue); }

/* ---------- regional offices ---------- */
.offices{ background:var(--paper); }
.office-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.office-card{
  background:var(--white);
  border:1px solid var(--line);
  border-top:3px solid var(--blue);
  padding:26px 22px;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.office-card:hover{
  border-top-color:var(--yellow);
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(11,30,61,0.08);
}
.office-card h3{ font-size:16.5px; margin:0 0 4px; text-transform:none; letter-spacing:0; }
.office-tag{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--blue);
  margin:0 0 12px;
}
.office-card p:last-child{ font-size:13.5px; color:var(--muted); line-height:1.6; margin:0; }

/* ---------- map placeholder ---------- */
.map-section{ padding:0; }
.map-placeholder{
  height:600px;
  background:
    repeating-linear-gradient(45deg, rgba(0,112,185,0.06) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, var(--paper-dim), var(--paper));
  display:flex; align-items:center; justify-content:center;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.map-placeholder span{
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
  background:var(--white);
  border:1px solid var(--line);
  padding:10px 18px;
  border-radius:2px;
}

/* ---------- category page ---------- */
.category-intro{  }
.category-intro p{ font-size:15.5px; line-height:1.75; color:var(--muted); }
.category-intro h2 {
    margin: 10px 0;
}
.category-intro p.overview { color: var(--blue); font-size: 16px; }

.category-toolbar{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
  padding:18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin:36px 0 36px;
}
.result-count{ font-size:13.5px; color:var(--muted); }
.result-count strong{ color:var(--ink); }
.sort-field{ display:flex; align-items:center; gap:10px; }
.sort-field label{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.05em;
  text-transform:uppercase; color:var(--muted);
}
.result-count a {
    display: inline-block;
    padding: 2px 12px;
    background: #EBF4F9;
    margin-right: 5px;
    border-radius: 3px;
}
.result-count a.selected {
    background: #000;
    color: #fff;
    font-weight: bold;
}
.sort-field select{
  border:1px solid var(--line); border-radius:2px;
  padding:8px 12px; font-size:13.5px; color:var(--ink); background:var(--white);
}
.sort-field select:focus{ outline:none; border-color:var(--blue); }

.product-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.product-list-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:3px;
  overflow:hidden;
  transition:box-shadow .2s ease, transform .2s ease;
}
.product-list-card:hover{ transform:translateY(-3px); box-shadow:0 18px 34px rgba(11,30,61,0.1); }
.product-list-thumb {
    /*aspect-ratio:16/9;*/
    aspect-ratio: 1;
    background: linear-gradient(150deg, var(--blue) 0%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
}
    /*.product-list-thumb::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 35%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255,255,0,0.7), transparent);
    }*/
.product-list-thumb img {width: 100%;}
.product-list-body{ padding:24px 26px 28px; }
.product-list-body h3{ font-size:19px; margin:0 0 8px; }
.product-list-body p{ font-size:14.5px; color:var(--muted); line-height:1.65; margin:0 0 16px; }
.spec-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.spec-chip{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:0.03em;
  color:var(--blue-dark);
  background:rgba(0,112,185,0.08);
  border:1px solid rgba(0,112,185,0.2);
  padding:4px 10px;
  border-radius:2px;
}
.product-list-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- product detail hero ---------- */
.product-hero{ padding-top:52px; }
.product-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:start;
}
.product-gallery-main{
  /*aspect-ratio:4/3;*/
  border-radius:3px;
  background:linear-gradient(150deg, var(--blue) 0%, var(--navy-deep) 100%);
  position:relative;
  overflow:hidden;
  margin-bottom:14px;
}
.product-gallery-main::after{
  content:"";
  position:absolute; left:0; right:0; top:0; height:3px;
  background:linear-gradient(180deg, rgba(255,255,0,0) 0%, rgba(255,255,0,0.65) 50%, rgba(255,255,0,0) 100%);
  animation:scan 4.5s linear infinite;
}
.product-gallery-thumbs{ display:flex; gap:12px; }
.product-gallery-thumbs span{
  flex:1;
  aspect-ratio:1;
  border-radius:2px;
  background:var(--paper-dim);
  border:1px solid var(--line);
}
.product-gallery-thumbs span:nth-child(1){ border-color:var(--blue); }

.product-category-tag{
  display:inline-block;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--blue-dark);
  background:rgba(0,112,185,0.08);
  border:1px solid rgba(0,112,185,0.2);
  padding:5px 12px;
  border-radius:2px;
  margin-bottom:16px;
}
.product-detail-info h1{ font-size:clamp(28px,3.6vw,42px); margin:0 0 14px; }
.product-tagline{ font-size:16px; color:var(--muted); line-height:1.65; margin:0 0 26px; }
.product-tagline p.eyebrow, #specifications p.eyebrow { font-size: 16px; }

    .product-tagline ul {
        display: block;
        list-style-type: disc;
        list-style-position: outside;
        margin-block-start: 1em;
        margin-block-end: 1em;
        padding-inline-start: 40px;
    }

    .product-tagline li {
        display: list-item;
    }

.quick-specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding:20px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-bottom:28px;
}
.quick-spec-label{
  display:block;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:4px;
}
.quick-spec-value{ display:block; font-size:15px; font-weight:600; color:var(--ink); }

.product-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- specs table ---------- */
.specs-table{
  width:100%;
  border-collapse:collapse;
  max-width:840px;
  margin:0 auto;
}
.specs-table tr{ border-bottom:1px solid var(--line); }
.specs-table tr:nth-child(odd){ background:var(--paper); }
.specs-table th,
.specs-table td{
  text-align:left;
  padding:14px 20px;
  font-size:14.5px;
  vertical-align:top;
  line-height:1.75;
}
.specs-table th{
  width:38%;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:500;
}
.specs-table td{ color:var(--ink); }

/* ---------- solution page: results & quote ---------- */
.results-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-bottom:52px;
}
.result-item{
  text-align:center;
  padding:28px 20px;
  background:var(--white);
  border:1px solid var(--line);
  border-top:3px solid var(--blue);
}
.result-num{
  display:block;
  font-family:var(--font-mono);
  font-size:32px;
  color:var(--blue);
  margin-bottom:6px;
}
.result-label{
  font-size:13px;
  color:var(--muted);
  letter-spacing:0.02em;
}
.quote-block{ max-width:740px; margin:0 auto; text-align:center; }
.quote-mark{
  font-family:var(--font-display);
  font-size:64px;
  line-height:1;
  color:var(--yellow);
  -webkit-text-stroke:1px var(--blue);
  margin-bottom:6px;
}
.quote-text{
  font-size:19px;
  line-height:1.65;
  color:var(--ink);
  font-style:italic;
  margin:0 0 18px;
}
.quote-author{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--muted);
}

/* ---------- news listing ---------- */
.news-filter-bar{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom:40px;
}
.news-filter{
  padding:9px 18px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  color:var(--muted);
  background:var(--white);
  border:1px solid var(--line);
  border-radius:20px;
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.news-filter:hover{ color:var(--blue); border-color:var(--blue); }
.news-filter.is-active{ color:var(--white); background:var(--blue); border-color:var(--blue); }

.featured-article{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:0;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:3px;
  overflow:hidden;
  margin-bottom:52px;
}
.featured-thumb{
  background:linear-gradient(150deg, var(--blue) 0%, var(--navy-deep) 100%);
  position:relative;
  min-height:280px;
}
.featured-thumb::after{
  content:"";
  position:absolute; left:0; right:0; top:40%; height:2px;
  background:linear-gradient(90deg, transparent, rgba(255,255,0,0.7), transparent);
}
.featured-body{ padding:38px; display:flex; flex-direction:column; justify-content:center; }
.featured-body .news-tag{ align-self:flex-start; }
.featured-body h2{ font-size:clamp(20px,2.6vw,28px); margin:14px 0 12px; text-transform:none; letter-spacing:0; }
.featured-body time{ font-size:12.5px; color:var(--muted); order:-1; }
.featured-body p{ font-size:14.5px; color:var(--muted); line-height:1.7; margin:0 0 18px; }

.pagination{
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin-top:48px;
}
.page-btn{
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  border-radius:2px;
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--muted);
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.page-btn:hover{ color:var(--blue); border-color:var(--blue); }
.page-btn.is-active{ background:var(--blue); border-color:var(--blue); color:var(--white); }
.page-btn.is-arrow{ font-size:16px; }

/* ---------- article detail ---------- */
.article-header{ max-width:760px; margin:0 auto; text-align:center; }
.article-header .product-category-tag{ margin-bottom:18px; }
.article-header h1{ font-size:clamp(28px,4vw,42px); margin:0 0 20px; }
.article-meta-row{
  display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap;
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--muted);
  letter-spacing:0.02em;
}
.article-meta-row span::before{ content:"•"; margin-right:18px; color:var(--line); }
.article-meta-row span:first-child::before{ content:""; margin-right:0; }

.article-hero-image{
  max-width:960px;
  margin:40px auto 0;
  aspect-ratio:16/8;
  border-radius:3px;
  background:linear-gradient(150deg, var(--blue) 0%, var(--navy-deep) 100%);
  position:relative;
  overflow:hidden;
}
.article-hero-image::after{
  content:"";
  position:absolute; left:0; right:0; top:0; height:3px;
  background:linear-gradient(180deg, rgba(255,255,0,0) 0%, rgba(255,255,0,0.65) 50%, rgba(255,255,0,0) 100%);
  animation:scan 5s linear infinite;
}

.article-body{
  max-width:720px;
  margin:0 auto;
}
.article-body p{ font-size:16px; line-height:1.85; color:#333A44; margin:0 0 22px; }
.article-body h2{ font-size:24px; text-transform:none; letter-spacing:0; margin:44px 0 18px; }
.article-body h3{ font-size:19px; text-transform:none; letter-spacing:0; margin:32px 0 14px; }
.article-lead{ font-size:19px !important; color:var(--ink) !important; line-height:1.7 !important; }
.article-body blockquote{
  margin:32px 0;
  padding:6px 0 6px 24px;
  border-left:3px solid var(--yellow);
  font-size:19px;
  font-style:italic;
  color:var(--ink);
}
.article-body ul{
  margin:0 0 22px;
  padding-left:20px;
  list-style:disc;
}
.article-body li{
  font-size:16px;
  line-height:1.8;
  color:#333A44;
  margin-bottom:8px;
}

.article-share{
  display:flex; align-items:center; gap:12px;
  max-width:720px; margin:36px auto 0;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.article-share span{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--muted);
}

.author-box{
  max-width:720px;
  margin:44px auto 0;
  display:flex; gap:18px; align-items:center;
  background:var(--paper);
  border:1px solid var(--line);
  padding:22px 26px;
  border-radius:3px;
}
.author-avatar{
  flex:none;
  width:56px; height:56px;
  border-radius:50%;
  background:linear-gradient(150deg, var(--blue), var(--navy-deep));
}
.author-box h4{ font-size:15px; margin:0 0 4px; text-transform:none; letter-spacing:0; color:var(--ink); }
.author-box p{ font-size:13.5px; color:var(--muted); margin:0; line-height:1.6; }

/* ---------- article detail ---------- */
.article-hero{ padding:52px 0 0; }
.article-meta-row{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  margin-bottom:18px;
}
.article-meta-row time{ font-size:13px; color:var(--muted); }
.article-meta-row .dot{ color:var(--line); }
.article-hero h1{
  font-size:clamp(28px,4.2vw,44px);
  max-width:820px;
  margin:0 0 22px;
}
.article-byline{
  display:flex; align-items:center; gap:12px;
  font-size:14px;
  color:var(--muted);
  margin-bottom:32px;
}
.article-byline strong{ color:var(--ink); }
.article-cover{
  aspect-ratio:21/9;
  border-radius:3px;
  background:linear-gradient(150deg, var(--blue) 0%, var(--navy-deep) 100%);
  position:relative;
  overflow:hidden;
  margin-bottom:8px;
}
.article-cover::after{
  content:"";
  position:absolute; left:0; right:0; top:0; height:3px;
  background:linear-gradient(180deg, rgba(255,255,0,0) 0%, rgba(255,255,0,0.65) 50%, rgba(255,255,0,0) 100%);
  animation:scan 4.5s linear infinite;
}

.article-body{
  max-width:740px;
  margin:0 auto;
}
.article-body p{
  font-size:16px;
  line-height:1.85;
  color:var(--ink);
  margin:0 0 22px;
}
.article-body h2{
  font-size:24px;
  text-transform:none;
  letter-spacing:0;
  margin:44px 0 18px;
}
.article-pullquote{
  border-left:3px solid var(--blue);
  background:var(--paper);
  padding:22px 28px;
  margin:36px 0;
  font-size:19px;
  line-height:1.6;
  font-style:italic;
  color:var(--ink);
}
.article-share{
  display:flex; align-items:center; gap:12px;
  padding:24px 0;
  margin:36px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.article-share span{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--muted);
}
.article-share .social-icon{ width:34px; height:34px; }

.author-box{
  display:flex; gap:18px; align-items:flex-start;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:3px;
  padding:24px;
  margin-top:36px;
}
.author-avatar{
  flex:none;
  width:56px; height:56px;
  border-radius:50%;
  background:linear-gradient(150deg, var(--blue), var(--navy-deep));
}
.author-box h4{
  font-family:var(--font-display);
  font-size:15px;
  text-transform:none;
  letter-spacing:0;
  color:var(--ink);
  margin:0 0 4px;
}
.author-box p{ font-size:13.5px; color:var(--muted); line-height:1.6; margin:0; }

/* ---------- search results page ---------- */
.search-box-inline {
    display: flex;
    gap: 10px;
    max-width: 640px;
    margin-top: 10px;
}

    .search-box-inline input {
        flex: 1;
        height: 48px;
        border: none;
        border-radius: 2px;
        padding: 0 16px;
        font-size: 15px;
    }

.search-summary {
    font-size: 14px;
    color: var(--muted);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: 8px;
}

    .search-summary strong {
        color: var(--ink);
    }

.search-result-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.search-result-type {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
    margin-bottom: 10px;
}

    .search-result-type.type-product {
        background: rgba(0,112,185,0.1);
        color: var(--blue-dark);
    }

    .search-result-type.type-page {
        background: var(--paper-dim);
        color: var(--muted);
    }

    .search-result-type.type-article {
        background: var(--yellow);
        color: var(--ink);
    }

    .search-result-type.type-category {
        background: var(--navy);
        color: var(--white);
    }

    .search-result-type.type-topic {
        background: var(--yellow-dark);
        color: var(--muted);
    }

.search-result-title {
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: 0;
    font-size: 19px;
    margin: 0 0 6px;
}

    .search-result-title a {
        color: var(--ink);
    }

        .search-result-title a:hover {
            color: var(--blue);
        }

.search-result-url {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--blue);
    margin: 0 0 8px;
}

.search-result-desc {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

    .search-result-desc mark,
    .search-result-title mark {
        background: var(--yellow);
        color: var(--ink);
        padding: 0 1px;
        border-radius: 1px;
    }

.search-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
}

    .search-empty h3 {
        color: var(--ink);
        font-size: 20px;
        margin: 0 0 10px;
        text-transform: none;
        letter-spacing: 0;
    }

/* ---------- responsive ---------- */
@media (max-width:1080px){
  .industry-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-top{ grid-template-columns:1fr 1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
  .team-grid{ grid-template-columns:repeat(2,1fr); }
  .split-section .wrap{ grid-template-columns:1fr; gap:36px; }
  .split-section.reverse .wrap { grid-template-columns:1fr; gap:36px; }
  .split-section.reverse .split-media,
  .split-section.reverse .split-content{ order:initial; }
  .split-media{ max-width:480px; }
  .contact-section .wrap.contact-grid{ grid-template-columns:1fr; }
  .office-grid{ grid-template-columns:repeat(2,1fr); }
  .product-list{ grid-template-columns:1fr; }
  .product-hero-grid{ grid-template-columns:1fr; gap:34px; }
  .featured-article{ grid-template-columns:1fr; }
  .featured-thumb{ min-height:200px; }
}

@media (max-width:900px){
  .main-nav{
    position:fixed; top:calc(var(--header-h));
    left:0; right:0; bottom:0;
    background:var(--navy);
    transform:translateX(-100%);
    transition:transform .25s ease;
    overflow-y:auto;
    padding:10px 0 40px;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:stretch; gap:0; padding:0 28px; }
  .main-nav > ul > li{ border-bottom:1px solid rgba(255,255,255,0.08); }
  .nav-toggle, .main-nav > ul > li > a{ height:56px; border-bottom:none; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        /*background: rgba(255,255,255,0.03);*/
        background: var(--navy);
        padding: 0 0 8px;
    }
        .dropdown a {
            color: #D8DEEA;
        }
  .has-dropdown:hover .dropdown{ transform:none; }
  .menu-toggle{ display:flex; }
  .menu-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2){ opacity:0; }
  .menu-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .header-actions .btn-primary{ display:none; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(3){ border-left:none; }
  .finder-panel{ grid-template-columns:1fr; }
  .news-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
}

@media (max-width:560px){
  .hero{ padding:90px 0 100px; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .industry-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
  .utility-inner{ font-size:11.5px; }
  .utility-left a{ margin-right:12px; }
  .utility-left a:last-child{ display:none; }
  .product-card{ flex-direction:column; }
  .product-thumb{ width:100%; height:180px; }
  .team-grid{ grid-template-columns:1fr; }
  .timeline-list{ padding-left:22px; }
  .timeline-item{ padding-left:20px; }
  .timeline-item::before{ left:-29px; }
  .contact-form .form-row{ grid-template-columns:1fr; }
  .contact-form-card{ padding:26px; }
  .office-grid{ grid-template-columns:1fr; }
  .category-toolbar{ flex-direction:column; align-items:flex-start; }
  .quick-specs{ grid-template-columns:1fr 1fr; }
  .results-grid{ grid-template-columns:1fr; }
  .author-box{ flex-direction:column; text-align:center; align-items:center; }
  .search-box-inline{ flex-direction:column; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .hero-scanline{ animation:none; opacity:.3; }
  .scroll-cue{ animation:none; }
  .btn, .product-card, .industry-card, .news-card, .back-to-top{ transition:none; }
}
/* ---------- icon glyphs (data-icon attribute -> inline SVG mask) ---------- */
[data-icon]::after{
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-position:center; mask-position:center;
  -webkit-mask-size:contain; mask-size:contain;
}
[data-icon="plane"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 L13 9 L21 13 L13.3 14.4 L14 20.5 L12 19.3 L10 20.5 L10.7 14.4 L3 13 L11 9 Z' fill='white'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 L13 9 L21 13 L13.3 14.4 L14 20.5 L12 19.3 L10 20.5 L10.7 14.4 L3 13 L11 9 Z' fill='white'/%3E%3C/svg%3E"); }
[data-icon="anchor"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='5' r='2.1' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cline x1='12' y1='7' x2='12' y2='19' stroke='white' stroke-width='1.6'/%3E%3Cline x1='8' y1='10' x2='16' y2='10' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M6 14 Q6 20 12 20 Q18 20 18 14' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='5' r='2.1' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cline x1='12' y1='7' x2='12' y2='19' stroke='white' stroke-width='1.6'/%3E%3Cline x1='8' y1='10' x2='16' y2='10' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M6 14 Q6 20 12 20 Q18 20 18 14' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); }
[data-icon="bolt"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L4 14H11L10 22L20 9H13L13 2Z' fill='white'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L4 14H11L10 22L20 9H13L13 2Z' fill='white'/%3E%3C/svg%3E"); }
[data-icon="lock"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='11' width='14' height='10' rx='2' fill='white'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4' fill='none' stroke='white' stroke-width='1.8'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='11' width='14' height='10' rx='2' fill='white'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4' fill='none' stroke='white' stroke-width='1.8'/%3E%3C/svg%3E"); }
[data-icon="shield"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L20 5V11C20 16 16.5 20 12 22C7.5 20 4 16 4 11V5Z' fill='white'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L20 5V11C20 16 16.5 20 12 22C7.5 20 4 16 4 11V5Z' fill='white'/%3E%3C/svg%3E"); }
[data-icon="truck"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='9' width='12' height='7' fill='white'/%3E%3Cpath d='M14 11H18L21 14V16H14Z' fill='white'/%3E%3Ccircle cx='6.5' cy='18' r='1.8' fill='white'/%3E%3Ccircle cx='17' cy='18' r='1.8' fill='white'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='9' width='12' height='7' fill='white'/%3E%3Cpath d='M14 11H18L21 14V16H14Z' fill='white'/%3E%3Ccircle cx='6.5' cy='18' r='1.8' fill='white'/%3E%3Ccircle cx='17' cy='18' r='1.8' fill='white'/%3E%3C/svg%3E"); }
[data-icon="container"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='6' width='18' height='12' rx='1' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10' stroke='white' stroke-width='1.2'/%3E%3Cline x1='3' y1='14' x2='21' y2='14' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='6' width='18' height='12' rx='1' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10' stroke='white' stroke-width='1.2'/%3E%3Cline x1='3' y1='14' x2='21' y2='14' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E"); }
[data-icon="scanner"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='16' height='16' rx='2' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cline x1='4' y1='9' x2='20' y2='9' stroke='white' stroke-width='1.6'/%3E%3Cline x1='8' y1='14' x2='16' y2='14' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='16' height='16' rx='2' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cline x1='4' y1='9' x2='20' y2='9' stroke='white' stroke-width='1.6'/%3E%3Cline x1='8' y1='14' x2='16' y2='14' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E"); }
[data-icon="gate"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='2.4' height='16' fill='white'/%3E%3Crect x='17.6' y='4' width='2.4' height='16' fill='white'/%3E%3Cpath d='M8 8 Q12 6 16 8' fill='none' stroke='white' stroke-width='1.4'/%3E%3Cpath d='M8 12 Q12 10 16 12' fill='none' stroke='white' stroke-width='1.4'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='2.4' height='16' fill='white'/%3E%3Crect x='17.6' y='4' width='2.4' height='16' fill='white'/%3E%3Cpath d='M8 8 Q12 6 16 8' fill='none' stroke='white' stroke-width='1.4'/%3E%3Cpath d='M8 12 Q12 10 16 12' fill='none' stroke='white' stroke-width='1.4'/%3E%3C/svg%3E"); }
[data-icon="bag"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='8' width='16' height='12' rx='1.5' fill='white'/%3E%3Crect x='9' y='4' width='6' height='4' rx='1' fill='none' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='8' width='16' height='12' rx='1.5' fill='white'/%3E%3Crect x='9' y='4' width='6' height='4' rx='1' fill='none' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E"); }
[data-icon="parcel"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='1.5' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cline x1='3' y1='3' x2='21' y2='21' stroke='white' stroke-width='1.2'/%3E%3Cline x1='21' y1='3' x2='3' y2='21' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='1.5' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cline x1='3' y1='3' x2='21' y2='21' stroke='white' stroke-width='1.2'/%3E%3Cline x1='21' y1='3' x2='3' y2='21' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E"); }
[data-icon="person"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='7' r='3.5' fill='white'/%3E%3Cpath d='M5 21C5 16 8 14 12 14C16 14 19 16 19 21Z' fill='white'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='7' r='3.5' fill='white'/%3E%3Cpath d='M5 21C5 16 8 14 12 14C16 14 19 16 19 21Z' fill='white'/%3E%3C/svg%3E"); }
[data-icon="linkedin"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6' cy='7' r='2' fill='white'/%3E%3Ccircle cx='18' cy='7' r='2' fill='white'/%3E%3Ccircle cx='12' cy='17' r='2' fill='white'/%3E%3Cline x1='6' y1='7' x2='12' y2='17' stroke='white' stroke-width='1.4'/%3E%3Cline x1='18' y1='7' x2='12' y2='17' stroke='white' stroke-width='1.4'/%3E%3Cline x1='6' y1='7' x2='18' y2='7' stroke='white' stroke-width='1.4'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6' cy='7' r='2' fill='white'/%3E%3Ccircle cx='18' cy='7' r='2' fill='white'/%3E%3Ccircle cx='12' cy='17' r='2' fill='white'/%3E%3Cline x1='6' y1='7' x2='12' y2='17' stroke='white' stroke-width='1.4'/%3E%3Cline x1='18' y1='7' x2='12' y2='17' stroke='white' stroke-width='1.4'/%3E%3Cline x1='6' y1='7' x2='18' y2='7' stroke='white' stroke-width='1.4'/%3E%3C/svg%3E"); }
[data-icon="x"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='5' y1='5' x2='19' y2='19' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3Cline x1='19' y1='5' x2='5' y2='19' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='5' y1='5' x2='19' y2='19' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3Cline x1='19' y1='5' x2='5' y2='19' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E"); }
[data-icon="youtube"]::after{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='3' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M10 9L16 12L10 15Z' fill='white'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='3' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M10 9L16 12L10 15Z' fill='white'/%3E%3C/svg%3E"); }