/* ==========================================================================
   UBOE — Image & Optics Solutions
   Domain: USBIMAGE.COM
   Global stylesheet
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --brand-900: #05080f;
  --brand-800: #0a1020;
  --brand-700: #101a33;
  --brand-600: #16264a;
  --accent: #1e7bff;
  --accent-soft: #4d9aff;
  --accent-glow: rgba(30, 123, 255, 0.35);
  --cyan: #17d4d4;
  --ink-900: #0b1220;
  --ink-700: #2c3a52;
  --ink-500: #5a6b85;
  --line: #e4e9f2;
  --bg: #ffffff;
  --bg-soft: #f5f8fd;
  --bg-soft2: #eef3fb;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 18, 32, 0.06);
  --shadow: 0 12px 34px rgba(11, 18, 32, 0.10);
  --shadow-lg: 0 26px 60px rgba(11, 18, 32, 0.16);
  --maxw: 1200px;
  --header-h: 76px;
  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-soft); }
h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.22; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.15rem; }
li { margin-bottom: .4em; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 68px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.lead { font-size: 1.09rem; color: var(--ink-500); max-width: 66ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px var(--accent-glow); }
.btn--primary:hover { background: #1567dc; color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { background: transparent; color: var(--accent); border-color: #c6d9f7; }
.btn--outline:hover { background: var(--bg-soft2); color: var(--accent); }
.btn--sm { padding: 10px 20px; font-size: .87rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--brand-900);
  color: #93a3bd;
  font-size: .82rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; gap: 16px; }
.topbar a { color: #93a3bd; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 20px; align-items: center; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--accent) 0%, #0d4fb5 55%, var(--cyan) 130%);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px var(--accent-glow);
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-weight: 800; font-size: 1.24rem; color: var(--ink-900); letter-spacing: .06em; }
.logo__tag { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-500); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 15px; border-radius: 9px;
  font-size: .95rem; font-weight: 500; color: var(--ink-700);
}
.nav a:hover { background: var(--bg-soft2); color: var(--accent); }
.nav a.is-active { color: var(--accent); font-weight: 700; }
.header__cta { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { width: 18px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: .25s; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% 12%, rgba(30,123,255,.34), transparent 62%),
    radial-gradient(760px 420px at 12% 88%, rgba(23,212,212,.20), transparent 60%),
    linear-gradient(158deg, #05080f 0%, #0a1428 48%, #101f3d 100%);
  color: #dce6f7;
  padding: 108px 0 116px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(900px 520px at 60% 30%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero p { color: #a9bcd8; font-size: 1.09rem; max-width: 56ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2.4rem; }
.badge {
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  color: #c3d4ee;
}

/* hero visual */
.hero__visual { position: relative; }
.scope-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}
.scope-card__label {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: #8fa6c6; margin-bottom: 14px;
}
.scope-card__frame {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #06101f;
}
.scope-card__frame svg { display: block; width: 100%; height: auto; }
.scope-card__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.metric { text-align: center; padding: 12px 6px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); }
.metric b { display: block; font-size: 1.16rem; color: #fff; }
.metric span { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: #8fa6c6; }

/* ---------- Stat strip ---------- */
.stats { background: var(--brand-800); border-top: 1px solid rgba(255,255,255,.07); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 34px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: 2rem; color: #fff; font-weight: 800; letter-spacing: -.02em; }
.stat span { font-size: .82rem; color: #8fa6c6; letter-spacing: .06em; }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfdcf3; }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--bg-soft2); color: var(--accent);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-500); font-size: .96rem; margin-bottom: 0; }

/* ---------- Capability list ---------- */
.cap-list { list-style: none; padding: 0; margin: 0; }
.cap-list li {
  position: relative; padding-left: 30px; margin-bottom: .7rem;
  color: var(--ink-700); font-size: .96rem;
}
.cap-list li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-soft2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e7bff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
}

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: var(--brand-800);
}
.split__media svg { display: block; width: 100%; height: auto; }

/* ==========================================================================
   Products
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  padding: 9px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: #fff;
  font-size: .88rem; font-weight: 600; color: var(--ink-700);
  transition: .2s;
}
.filter:hover { border-color: #cfdcf3; color: var(--accent); }
.filter.is-active { background: var(--brand-800); border-color: var(--brand-800); color: #fff; }

.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cfdcf3; }
.product__media {
  position: relative; aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #0b1526, #12233f 55%, #0a1a30);
  display: grid; place-items: center; overflow: hidden;
}
.product__media svg { width: 100%; height: 100%; }
.product__tag {
  position: absolute; top: 12px; left: 12px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,.13); color: #dbe8fb;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}
.product__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.product__model { font-size: .78rem; font-weight: 700; color: var(--accent); letter-spacing: .08em; margin-bottom: .7rem; }
.product__desc { font-size: .92rem; color: var(--ink-500); margin-bottom: 1rem; }
.spec { list-style: none; padding: 0; margin: 0 0 1.2rem; border-top: 1px solid var(--line); }
.spec li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 8px 0; margin: 0; font-size: .85rem;
  border-bottom: 1px solid var(--line);
}
.spec span { color: var(--ink-500); }
.spec b { color: var(--ink-900); font-weight: 600; text-align: right; }
.product__foot { margin-top: auto; }

/* product table */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 620px; background: #fff; }
table.spec-table th, table.spec-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
table.spec-table th { background: var(--bg-soft); font-weight: 700; color: var(--ink-900); font-size: .82rem; letter-spacing: .04em; }
table.spec-table tr:last-child td { border-bottom: 0; }
table.spec-table td:first-child { font-weight: 600; color: var(--ink-900); }

/* ==========================================================================
   About
   ========================================================================== */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--cyan), transparent);
}
.tl-item { position: relative; margin-bottom: 34px; }
.tl-item::before {
  content: ""; position: absolute; left: -33px; top: 5px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent); box-shadow: 0 0 0 4px var(--bg-soft2);
}
.tl-item h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.tl-item span { font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; }
.tl-item p { font-size: .94rem; color: var(--ink-500); margin: .4rem 0 0; }

.value { text-align: center; }
.value__icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #0d4fb5); color: #fff;
  box-shadow: 0 10px 24px var(--accent-glow);
}
.value__icon svg { width: 27px; height: 27px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background:
    radial-gradient(760px 340px at 50% -10%, rgba(30,123,255,.42), transparent 68%),
    linear-gradient(150deg, #060c18, #0d1b33 60%, #122447);
  padding: 82px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #a9bcd8; max-width: 62ch; margin: 0 auto 2rem; }
.cta-band .hero__actions { justify-content: center; }

/* ==========================================================================
   Contact / Discussion
   ========================================================================== */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-900); margin-bottom: 7px; }
.field label .req { color: #e0483a; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .94rem; color: var(--ink-900);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,123,255,.13);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-500); }
.check input { width: auto; margin-top: .3em; }

.info-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; margin-bottom: 16px;
}
.info-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.info-card p { margin: 0; font-size: .93rem; color: var(--ink-500); }
.info-card a { font-weight: 600; }

.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--ink-900);
  font-size: .97rem; list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq__body { padding: 0 22px 20px; font-size: .93rem; color: var(--ink-500); }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--brand-900); color: #8697b3; padding: 68px 0 0; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer a { color: #8697b3; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .6rem; }
.footer__brand .logo__name { color: #fff; }
.footer__brand .logo__tag { color: #6c7f9d; }
.footer__brand p { margin-top: 1.1rem; max-width: 34ch; font-size: .9rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .84rem;
}
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.social svg { width: 17px; height: 17px; }

/* ---------- Flash / toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 34px; transform: translate(-50%, 120%);
  background: var(--brand-800); color: #fff; padding: 14px 26px; border-radius: 999px;
  font-size: .92rem; font-weight: 600; box-shadow: var(--shadow-lg);
  transition: transform .35s cubic-bezier(.2,.9,.3,1.2); z-index: 999;
}
.toast.is-open { transform: translate(-50%, 0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }
}

@media (max-width: 760px) {
  .section { padding: 62px 0; }
  .hero { padding: 74px 0 84px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .header .wrap { height: 66px; }

  .nav {
    position: fixed; inset: 66px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 16px 20px; box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .3s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 12px; border-radius: 8px; font-size: 1rem; }
  .burger { display: flex; }
  .header__cta .btn { display: none; }
  .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .form-card { padding: 24px; }
  .scope-card__metrics { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Product detail pages
   ========================================================================== */
.p-hero { padding: 60px 0 76px; }
.p-hero .breadcrumb { margin-bottom: 30px; }
.p-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.p-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.p-hero__media {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 60px rgba(0,0,0,.4);
  background: #06101f;
}
.p-hero__media svg { display: block; width: 100%; height: auto; }

.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: .85rem; color: #8fa6c6;
}
.breadcrumb a { color: #8fa6c6; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current] { color: #dce6f7; font-weight: 600; }

.spec-strip {
  margin-top: 46px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}

/* ---------- Light-theme extras (cards, chips, prose) ---------- */
.mini-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
}
.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfdcf3; }
.mini-card h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.mini-card p { font-size: .9rem; color: var(--ink-500); margin-bottom: .8rem; }
.mini-card a { font-weight: 600; font-size: .9rem; }

.chip {
  display: inline-block; padding: 5px 13px; border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--bg-soft2); color: var(--accent);
  border: 1px solid #c6d9f7;
}
.chip--cyan { background: #e5fbfb; color: #0b8f8f; border-color: #b9edee; }
.chip--amber { background: #fff4e0; color: #a06608; border-color: #f4dfb6; }

.news-card h3 { font-size: 1.12rem; margin-top: 1rem; }
.news-card h3 a { color: var(--ink-900); }
.news-card h3 a:hover { color: var(--accent); }
.news-meta {
  display: flex; gap: 8px; margin-top: 1.2rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--ink-500);
}

.article-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.2rem;
  font-size: .85rem; color: #8fa6c6;
}

.prose { max-width: 780px; }
.prose h2 { margin-top: 2.1em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6em; }
.prose li { margin-bottom: .5em; }
.prose blockquote {
  border-left: 3px solid var(--accent); background: var(--bg-soft);
  padding: 14px 20px; border-radius: 0 10px 10px 0;
  color: var(--ink-700); margin: 1.4em 0;
}
.prose .lead { margin-bottom: 1.6em; }

.callout {
  background: var(--bg-soft2); border: 1px solid #c6d9f7;
  border-radius: var(--radius); padding: 22px 24px; margin: 2em 0;
}
.callout h3 { margin-bottom: .45rem; font-size: 1.02rem; }

.form-narrow { max-width: 760px; margin: 0 auto; }

@media (max-width: 1024px) {
  .p-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .spec-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .spec-strip { gap: 10px; }
  .prose h2 { font-size: 1.3rem; }
}

/* --- Brand logo images (real UBOE wordmark) --- */
.logo__img { display: block; height: 34px; width: auto; }
.logo--footer .logo__img { height: 26px; }
@media (max-width: 760px) {
  .logo__img { height: 28px; }
  .logo--footer .logo__img { height: 24px; }
}

/* --- Real product photography (DM022 series) --- */
.p-hero__media img { display: block; width: 100%; height: auto; }
.split__media img { display: block; width: 100%; height: auto; }
.product__media img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.photo-grid img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1 / 1; object-fit: contain;
  border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff;
}
@media (min-width: 761px) {
  .photo-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .photo-grid { gap: 12px; margin-top: 32px; }
}

/* --- Address blocks (footer + location sections) --- */
.footer__addr {
  color: #6c7f9d;
  font-size: .86rem;
  line-height: 1.55;
  margin-top: .9rem;
}
.mini-card p { line-height: 1.6; }
.mini-card p + p { margin-top: .55rem; }

/* --- Verification notice above enquiry forms --- */
.form-note {
  background: rgba(30, 123, 255, .06);
  border: 1px solid rgba(30, 123, 255, .18);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0 0 1.4rem;
}
.form-note strong { color: var(--ink-900, #05080f); }
