/* =====================================================================
   Bluesys Lighting Solution — app.css
   The single front-end stylesheet. Replaces theme/components/pages/redesign.
   Order: tokens → base → layout → components → sections → pages → motion.
   ===================================================================== */

/* ============================ 1 · TOKENS ============================ */
:root {
  /* Brand — from the bluesys logo and the approved design */
  --blue: #1d8fd1;
  --blue-dark: #1269a9;
  --blue-deep: #0b4d7f;
  --navy: #071522;
  --navy-2: #0e2437;
  --lime: #a6cd0e;
  --lime-dark: #8eaf00;

  /* Neutrals */
  --ink: #10202e;
  --body: #5d6f7f;
  --muted: #8494a3;
  --line: #e4ebf1;
  --line-2: #d3dde6;
  --soft: #f4f8fb;
  --soft-2: #eaf2f8;
  --white: #fff;

  /* Tints */
  --blue-tint: #e8f4fc;
  --lime-tint: #f2f8dd;

  /* Category accents. Products and categories carry one of these names in the
     database and views resolve it as var(--<accent>), so all three must exist. */
  --cyan: #22b3d6;
  --magenta: #c0399f;
  --amber: #eda32a;

  --success: #35b857;
  --danger: #e0574f;

  /* Type */
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Space Grotesk", var(--font);

  /* Space */
  --container: 1280px;
  --gutter: 20px;
  --section-y: 96px;
  --section-y-sm: 56px;

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(10, 35, 60, .06);
  --shadow: 0 14px 40px rgba(10, 35, 60, .10);
  --shadow-lg: 0 26px 60px rgba(10, 35, 60, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ============================ 2 · BASE ============================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--lime); color: #16250a; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(34px, 4.6vw, 58px); }
h2 { font-size: clamp(28px, 3.4vw, 42px); }
h3 { font-size: 20px; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.mono { font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; }
.muted { color: var(--muted); }
.tx-blue { color: var(--blue); }
.tx-lime { color: var(--lime); }

/* ============================ 3 · LAYOUT ============================ */
.container, .wrap {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}
.section { padding: var(--section-y) 0; }
.section-tight { padding-top: 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: #c6d5e2; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.section-title { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-title p { color: var(--muted); font-size: 16px; margin: 14px 0 0; }
.section-dark .section-title p { color: #9db1c4; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head > div { max-width: 640px; }
.section-head h2 { margin-bottom: 0; }

.kicker, .section-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--lime); }
.section-title .kicker { justify-content: center; }
.section-dark .kicker { color: var(--lime); }
.section-dark .kicker::before { background: var(--lime); }

/* ============================ 4 · BUTTONS ============================ */
.btn {
  --btn-bg: var(--blue); --btn-fg: #fff; --btn-bd: var(--blue);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10, 35, 60, .18); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; }
.btn-lime  { --btn-bg: var(--lime); --btn-fg: #16250a; --btn-bd: var(--lime); }
.btn-lime:hover { --btn-bg: var(--lime-dark); --btn-bd: var(--lime-dark); }
.btn-blue, .btn-primary { --btn-bg: var(--blue); --btn-fg: #fff; --btn-bd: var(--blue); }
.btn-blue:hover, .btn-primary:hover { --btn-bg: var(--blue-dark); --btn-bd: var(--blue-dark); }
.btn-dark  { --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--navy); }
.btn-white { --btn-bg: #fff; --btn-fg: var(--navy); --btn-bd: #fff; }
.btn-ghost, .btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn-ghost:hover, .btn-outline:hover { --btn-bd: var(--blue); --btn-fg: var(--blue); }
.btn-ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.45); }
.btn-ghost-light:hover { --btn-bg: rgba(255,255,255,.12); --btn-bd: #fff; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* Text link with sliding arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--blue);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--blue-dark); }
.link-arrow:hover svg { transform: translateX(5px); }
.section-dark .link-arrow { color: var(--lime); }

/* ============================ 5 · HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 900; background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), padding .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 30px rgba(10, 35, 60, .09); }
.header-row { display: flex; align-items: center; gap: 26px; min-height: 88px; transition: min-height .25s var(--ease); }
.site-header.scrolled .header-row { min-height: 72px; }
.brand { flex-shrink: 0; }
.brand img { width: 168px; height: auto; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  position: relative; display: block; padding: 6px 0;
  font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--ink);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--lime); transform: scaleX(0); transform-origin: right;
  transition: transform .28s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-mobile-only { display: none; }

.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; }
.header-phone .ic {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-tint); color: var(--blue); flex-shrink: 0;
}
.header-phone .ic svg { width: 17px; height: 17px; }
.header-phone small { display: block; font-size: 12px; color: var(--muted); line-height: 1.3; }
.header-phone b { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.header-phone:hover b { color: var(--blue); }

.nav-toggle {
  display: none; width: 46px; height: 44px; border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm); background: #fff; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ 6 · HERO ============================
   Full-bleed photo slider with the copy sitting over it. The photography is
   the hero, not a panel beside it. */
.hero { position: relative; background: var(--navy); color: #cfdde8; overflow: hidden; min-height: min(88vh, 760px); display: grid; align-items: center; }
.hero-swiper { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: hidden; }
.hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide { height: 100%; }
.hero-slide { position: relative; background-size: cover; background-position: center; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,16,26,.94) 0%, rgba(5,16,26,.78) 42%, rgba(5,16,26,.34) 72%, rgba(5,16,26,.22) 100%),
    linear-gradient(180deg, rgba(5,16,26,.45) 0%, transparent 30%, rgba(5,16,26,.55) 100%);
}
/* Slow push-in on the active slide keeps a static photo feeling alive. */
.hero-swiper .swiper-slide-active { animation: heroZoom 8s var(--ease) forwards; }
@keyframes heroZoom { from { background-size: 104%; } to { background-size: 116%; } }

/* No width here — this element also carries .container, and setting width:100%
   overrode the container's 1280px cap, throwing the heading, dots and caption
   out to the raw viewport edges. */
.hero-inner { position: relative; z-index: 2; padding: 120px 0 130px; }
.hero-copy { max-width: 700px; }
.hero .kicker { color: var(--lime); }
.hero .kicker::before { background: var(--lime); }
.hero h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero h1 .lime { color: var(--lime); }
.hero-lead { font-size: 18px; color: #e4eef5; margin-bottom: 12px; }
.hero-lead strong { color: #fff; }
.hero-text { font-size: 16.5px; color: #b6c8d6; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-caption {
  position: absolute; z-index: 3; right: 0; bottom: 40px; text-align: right;
  color: #fff; font-family: var(--font-head);
}
.hero-caption b { display: block; font-size: 17px; }
.hero-caption span { font-size: 13px; color: var(--lime); letter-spacing: .06em; text-transform: uppercase; }
.hero-dots { position: absolute; z-index: 3; left: 0; bottom: 46px; display: flex; gap: 8px; width: auto !important; }
.hero-dots .swiper-pagination-bullet { width: 26px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.4); opacity: 1; margin: 0 !important; transition: background .2s; }
.hero-dots .swiper-pagination-bullet-active { background: var(--lime); }
.hero-arrow {
  position: absolute; z-index: 4; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.35); background: rgba(7,21,34,.35); color: #fff;
  transition: background .2s, border-color .2s, color .2s;
}
.hero-arrow:hover { background: var(--lime); border-color: var(--lime); color: #16250a; }
.hero-prev { left: 20px; } .hero-next { right: 20px; }

/* ============================ 7 · MARQUEE ============================ */
.marquee {
  background: var(--lime); color: #16250a; overflow: hidden;
  padding: 16px 0; border-block: 1px solid rgba(0,0,0,.06);
}
.marquee-dark { background: var(--navy); color: #fff; }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 42px; padding-right: 42px; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-size: 19px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap;
}
.marquee-item::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .45; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================ 8 · CARDS ============================ */
/* Product / solution category tile */
/* Flex, not grid: the number of categories is admin-editable, and a short last
   row centres itself instead of leaving an orphan tile hanging on the left. */
.cat-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.cat-grid > * { flex: 0 1 calc((100% - 3 * 22px) / 4); min-width: 0; }
.cat-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.cat-media { position: relative; aspect-ratio: 16 / 11; background: var(--soft); display: grid; place-items: center; overflow: hidden; }
/* contain, not cover: these are product shots, and cropping them edge-to-edge
   made the whole section read as a wall of dark rectangles. */
.cat-media img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .5s var(--ease); }
.cat-card:hover .cat-media img { transform: scale(1.05); }
.cat-ph { width: 64px; height: 64px; border-radius: var(--r); background: linear-gradient(135deg, var(--blue), var(--lime)); opacity: .75; }
/* display:block matters — this is a <span>, and left inline its padded content
   overflowed the card instead of sitting under the image. */
.cat-body { display: block; padding: 20px 22px 24px; border-top: 1px solid var(--line); }
.cat-body h3 { font-size: 17px; margin-bottom: 6px; }
.cat-body p { font-size: 14px; color: var(--muted); margin: 0; }
.cat-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 14px; font-weight: 700; font-family: var(--font-head); color: var(--blue); }
.cat-card:hover .cat-more { gap: 12px; }

/* Project card */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proj-card {
  position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3.1; background: var(--navy-2);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.proj-card:hover img { transform: scale(1.07); }
.proj-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 38%, rgba(4,14,23,.9) 100%);
}
.proj-info { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: #fff; transition: transform .35s var(--ease); }
.proj-card:hover .proj-info { transform: translateY(-4px); }
.proj-tag {
  display: inline-block; margin-bottom: 10px; padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(166,205,14,.18); color: var(--lime);
  font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.proj-info h3 { color: #fff; font-size: 20px; margin: 0 0 4px; }
.proj-city { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: #c3d3e0; }
.proj-city svg { width: 14px; height: 14px; color: var(--lime); }

/* ---------- Project case study ---------- */
.case-cover { margin: 0 0 18px; border-radius: var(--r-lg); overflow: hidden; background: var(--navy-2); }
.case-cover img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }

.case-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.case-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); background: var(--navy-2); }
/* A video sits in the same grid cell as a photo, so it takes the same ratio. */
.case-video, .case-video-file {
  position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--r);
  overflow: hidden; background: #0b1722 center/cover; display: grid; place-items: center;
}
.case-video::before { content: ""; position: absolute; inset: 0; background: rgba(8, 20, 32, .34); }
.case-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.case-video-file { object-fit: cover; }
.case-play {
  position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; color: #0b1722;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3); transition: transform .2s var(--ease);
}
.case-play svg { width: 23px; height: 23px; margin-left: 2px; }
.case-video:hover .case-play { transform: scale(1.08); }
.case-video.is-playing .case-play, .case-video.is-playing::before { display: none; }

.case-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin: 40px 0; padding: 26px 0; border-block: 1px solid var(--line);
}
.case-facts dt {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.case-facts dd { margin: 0; font-size: 16px; color: var(--ink); font-weight: 600; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.case-block { padding-top: 20px; border-top: 3px solid var(--lime); }
.case-block h3 { font-size: 18px; margin-bottom: 10px; }
.case-block p { color: var(--body); margin: 0; }

/* Review card */
.review-score {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 16px;
  margin: -14px 0 38px;
}
.review-score b { font-family: var(--font-head); font-size: 40px; line-height: 1; color: var(--ink); }
.review-score .review-stars { margin: 0; font-size: 20px; }
.review-score-meta { font-size: 15px; color: var(--muted); }

.review-swiper { padding-bottom: 56px; }
.review-swiper .swiper-slide { height: auto; }
.review-card {
  height: 100%; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.review-quote { width: 34px; height: 34px; color: var(--blue-tint); margin-bottom: 14px; }
.review-stars { display: flex; gap: 3px; color: #dfe5eb; font-size: 16px; margin-bottom: 14px; }
.review-stars .on { color: #f5a623; }
.review-card blockquote { flex: 1; margin: 0 0 22px; font-size: 16px; line-height: 1.75; color: var(--body); }
/* Rating-only review: no quote glyph, the stars carry the card. */
.review-card.is-rating { padding-top: 26px; }
.review-card.is-rating .review-stars { font-size: 22px; margin-bottom: 10px; }
.review-plain { flex: 1; margin: 0 0 22px; font-size: 15px; color: var(--muted); }
.review-by { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-av { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); font-family: var(--font-head); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.review-name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); }
.review-meta { display: block; font-size: 13px; color: var(--muted); }
.swiper-pagination-bullet { background: var(--line-2); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--blue); width: 22px; border-radius: var(--r-pill); }

/* Why / feature card */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 24px;
  text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.why-ic {
  display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: var(--r); background: var(--blue-tint); color: var(--blue);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.why-card:hover .why-ic { background: var(--lime); color: #16250a; transform: rotate(-6deg); }
.why-ic svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* Client logo strip */
.clients-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.client-item {
  display: grid; place-items: center; min-width: 150px; height: 88px; padding: 16px 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.client-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.client-item img { max-height: 52px; width: auto; object-fit: contain; }
.client-ph { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: .06em; color: var(--blue-dark); opacity: .7; }

/* The logo marquee reuses the text marquee's track, at a slower crawl —
   twenty-six logos is a long belt and a logo needs longer to read than a word.
   The hover lift is dropped: the row is moving, so a tile rising under the
   cursor reads as a glitch. */
.client-marquee { background: transparent; border: 0; padding: 4px 0; }
.client-track { animation-duration: 64s; }
.client-marquee .marquee-group { gap: 16px; padding-right: 16px; }
.client-marquee .client-item { flex: 0 0 auto; }
.client-marquee .client-item:hover { transform: none; }

/* ============================ 9 · STATS ============================ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(34px, 4vw, 46px); font-weight: 700; color: var(--blue); line-height: 1; letter-spacing: -.03em; }
/* Direct child only — the counter is a <span> inside the <b>, and a
   descendant selector here was shrinking it to label size. */
.stat > span { display: block; margin-top: 10px; font-size: 14px; color: var(--muted); }
.section-dark .stat b { color: var(--lime); }
.section-dark .stat > span { color: #9db1c4; }

/* ============================ 10 · ABOUT SPLIT ============================ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3.2; background: var(--soft); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-badge {
  position: absolute; left: 22px; bottom: 22px; padding: 18px 24px; border-radius: var(--r);
  background: var(--lime); color: #16250a; font-family: var(--font-head);
}
.split-badge b { display: block; font-size: 30px; line-height: 1; }
/* Direct child only, so the counter <span> inside the <b> keeps the 30px. */
.split-badge > span { font-size: 13px; font-weight: 600; }
.tick-list { display: grid; gap: 14px; margin: 26px 0 32px; }
.tick-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; color: var(--ink); }
.tick { flex-shrink: 0; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--lime-tint); color: var(--lime-dark); margin-top: 2px; }
.tick svg { width: 13px; height: 13px; }

/* ============================ 11 · CTA BAND ============================ */
.cta-band { background: linear-gradient(105deg, var(--blue-deep) 0%, var(--blue) 55%, var(--lime) 145%); color: #fff; }
.cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
/* Stacked, not a single cramped row — at three-up the heading and the sentence
   were both wrapping mid-phrase around the icon and the button. */
.cta-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 46px 40px; border-right: 1px solid rgba(255,255,255,.2);
}
.cta-item:last-child { border-right: 0; }
.cta-ic { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.15); }
.cta-ic svg { width: 26px; height: 26px; }
.cta-item h3 { color: #fff; font-size: 21px; margin: 0; text-wrap: balance; }
.cta-item p { font-size: 15px; color: rgba(255,255,255,.86); margin: 0; max-width: 34ch; }
.cta-item .btn, .cta-phone { margin-top: auto; }
.cta-phone { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: #fff; white-space: nowrap; }
.cta-phone:hover { color: var(--lime); }

/* ============================ 12 · FOOTER ============================ */
.site-footer { background: var(--navy); color: #93a8ba; padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 46px; }
.footer-logo { width: 172px; margin-bottom: 20px; background: #fff; padding: 12px 14px; border-radius: var(--r-sm); }
.site-footer h3 { color: #fff; font-size: 17px; margin-bottom: 22px; }
.site-footer p { font-size: 14.5px; line-height: 1.8; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14.5px; display: inline-flex; align-items: center; gap: 9px; }
.footer-links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); opacity: .55; transition: opacity .2s, transform .2s; }
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { opacity: 1; transform: scale(1.4); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; line-height: 1.6; }
.footer-contact svg { width: 17px; height: 17px; color: var(--lime); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); color: #cfe0ee; transition: background .25s, color .25s, transform .25s var(--ease); }
.footer-social a:hover { background: var(--lime); color: #16250a; transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 60px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px;
}
.footer-bottom a:hover { color: #fff; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 950;
  width: 56px; height: 56px; border-radius: 50%; background: var(--success); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(53,184,87,.42);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { color: #fff; transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(53,184,87,.42); }
  50% { box-shadow: 0 10px 26px rgba(53,184,87,.42), 0 0 0 14px rgba(53,184,87,0); }
}

/* ============================ 13 · INNER PAGES ============================ */
.page-hero { position: relative; background: var(--navy); color: #b9cbdb; padding: 74px 0; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 28%, rgba(29,143,209,.32), transparent 46%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { max-width: 620px; color: #a9bccd; }
.page-hero .kicker { color: var(--lime); }
.page-hero .kicker::before { background: var(--blue); }
.page-hero .hero-actions { margin-top: 26px; }
/* The file size rides inside the button label rather than beside it. */
.page-hero .hero-actions .btn small { font-size: .82em; opacity: .75; font-weight: 500; }
.breadcrumb-nav { display: flex; flex-wrap: wrap; gap: 9px; font-size: 14px; color: #90a6b8; margin-bottom: 16px; }
.breadcrumb-nav a:hover { color: var(--lime); }
.section-note { max-width: 380px; font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- Catalogue: rail + results ---------- */
.catalog-layout { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: 40px; align-items: start; }

.filter-rail { position: sticky; top: 108px; }
.filter-rail-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.filter-rail-head h2 { font-size: 20px; margin: 0; }
.filter-clear { font-size: 13.5px; font-weight: 700; color: var(--blue); }
.filter-clear:hover { color: var(--blue-dark); }

.filter-group { padding: 20px 0; border-top: 1px solid var(--line); }
.filter-group h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink); margin-bottom: 8px;
}
.filter-list a, .filter-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; padding: 7px 0; color: var(--body);
  /* "1000 × 65 × 55 mm" is wider than the rail, so it wraps rather than
     pushing the sidebar out. */
  flex-wrap: wrap; overflow-wrap: anywhere;
}
.filter-list a:hover { color: var(--blue); }
.filter-list a.active { color: var(--blue); font-weight: 700; }
.filter-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.filter-cta { margin-top: 8px; padding: 22px; border-radius: var(--r-lg); background: var(--soft); }
.filter-cta h3 { font-size: 16px; margin-bottom: 6px; }
.filter-cta p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 24px;
}
.catalog-count { font-size: 15px; color: var(--muted); }
.catalog-count b { font-family: var(--font-head); font-size: 20px; color: var(--ink); margin-right: 4px; }
/* Wraps: the projects page puts every application name in this row, which is
   wider than a phone. */
.catalog-sort { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 14px; }
.catalog-sort span { color: var(--muted); margin-right: 4px; }
.catalog-sort a { padding: 6px 13px; border-radius: var(--r-pill); color: var(--body); font-weight: 600; }
.catalog-sort a:hover { background: var(--soft); color: var(--ink); }
.catalog-sort a.active { background: var(--blue-tint); color: var(--blue-dark); }

.filter-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--soft); border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  transition: background .2s, border-color .2s, color .2s;
}
.filter-pill span { color: var(--muted); font-weight: 400; }
.filter-pill svg { width: 13px; height: 13px; color: var(--muted); }
.filter-pill:hover { background: var(--blue-tint); border-color: transparent; color: var(--blue-dark); }
.filter-pill:hover svg { color: var(--blue-dark); }

.empty-state { padding: 72px 24px; text-align: center; border: 1px dashed var(--line-2); border-radius: var(--r-lg); }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 22px; }
.empty-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---------- Product card ---------- */
.prod-grid, .prod-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-grid > * { min-width: 0; }
.prod-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }

.prod-media {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 4 / 3; background: var(--soft); padding: 16px; overflow: hidden;
}
.prod-media img { max-height: 100%; width: auto; object-fit: contain; transition: transform .5s var(--ease); }
.prod-card:hover .prod-media img { transform: scale(1.06); }
.prod-media-ph { width: 64px; height: 64px; border-radius: var(--r); background: var(--accent, var(--blue)); opacity: .3; }
.prod-flag {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .9); border: 1px solid var(--line);
  font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--ink);
}

.prod-body { flex: 1; padding: 18px 20px 4px; }
.prod-sku { display: block; font-family: ui-monospace, monospace; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.prod-body h3 { font-size: 17px; line-height: 1.3; margin-bottom: 8px; }
.prod-body h3 a:hover { color: var(--blue); }
.prod-short {
  font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prod-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.prod-specs li {
  padding: 4px 10px; border-radius: var(--r-sm);
  background: var(--soft-2); font-size: 12.5px; font-weight: 600; color: var(--body);
}

/* ---------- About: prose + team ---------- */
.prose-wrap { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.stat-stack {
  grid-template-columns: 1fr; gap: 26px; text-align: left;
  padding: 30px 32px; border-radius: var(--r-lg); background: var(--soft);
}
.stat-stack .stat { text-align: left; }
.stat-stack .stat b { font-size: 34px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.team-photo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; }
.team-photo-initials {
  display: grid; place-items: center; background: var(--blue-tint); color: var(--blue);
  font-family: var(--font-head); font-size: 24px; font-weight: 700;
}
.team-card h3 { font-size: 17px; margin-bottom: 3px; }
.team-role { font-size: 13.5px; color: var(--blue); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 14.5px; color: var(--muted); margin-bottom: 12px; }
.team-links { display: flex; gap: 8px; font-size: 14px; font-weight: 600; color: var(--blue); margin: 0; }
.team-links span { color: var(--line-2); }
.team-links a:hover { color: var(--blue-dark); }

/* Review cards outside the carousel (about page) */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Rating-only reviews: a roll of buyers, not a wall of identical cards. */
.buyer-roll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 24px; }
.buyer-roll.has-quotes { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.buyer { display: flex; align-items: center; gap: 13px; padding: 12px 0; }
.buyer-text { min-width: 0; flex: 1; }
.buyer .review-stars { margin: 0; font-size: 13px; }

/* ---------- Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: start; }

.pd-stage {
  position: relative; display: grid; place-items: center; overflow: hidden;
  aspect-ratio: 4 / 3; border-radius: var(--r-lg); background: var(--soft); border: 1px solid var(--line);
}
/* The glow is the live colour preview: swatches rewrite --glow on this box. */
.pd-stage-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 58%, var(--glow), transparent 62%);
  opacity: .30; transition: background .3s var(--ease);
}
.pd-photo { position: relative; z-index: 1; max-width: 82%; max-height: 82%; width: auto; object-fit: contain; }
.pd-fixture {
  position: relative; z-index: 1; width: 42%; aspect-ratio: 3 / 2; border-radius: var(--r);
  background: linear-gradient(160deg, #35434f, #16222c);
  box-shadow: 0 20px 40px rgba(10, 35, 60, .22);
}

.pd-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.pd-thumb {
  width: 74px; aspect-ratio: 1; padding: 6px; border-radius: var(--r-sm);
  background: var(--soft); border: 1px solid var(--line); transition: border-color .2s;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumb:hover { border-color: var(--line-2); }
.pd-thumb.active { border-color: var(--blue); }

/* ---------- Product gallery ---------- */
/* One stage; only the active item is in the layout at all. */
.pd-stage-list { position: relative; }
.pd-item { display: none; }
.pd-item.is-active { display: grid; animation: pd-fade .25s var(--ease); }
@keyframes pd-fade { from { opacity: 0; } to { opacity: 1; } }
.pd-stage-video { background: #0b1722; border-color: #0b1722; padding: 0; }
.pd-video {
  position: relative; width: 100%; height: 100%;
  background-size: cover; background-position: center; display: grid; place-items: center;
}
.pd-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pd-play {
  position: relative; z-index: 1; width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center; color: #0b1722; background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3); transition: transform .2s var(--ease);
}
.pd-play svg { width: 26px; height: 26px; margin-left: 3px; }
.pd-video:hover .pd-play { transform: scale(1.08); }
.pd-video.is-playing .pd-play { display: none; }
.pd-video-file { width: 100%; height: 100%; object-fit: contain; background: #0b1722; }

.pd-thumb-video { background-size: cover; background-position: center; color: #fff; display: grid; place-items: center; }
/* Readable over a bright poster frame as well as the plain dark tile. */
.pd-thumb-video::before { content: ""; position: absolute; inset: 0; background: rgba(8, 20, 32, .42); border-radius: inherit; }
.pd-thumb-video { position: relative; background-color: #0b1722; }
.pd-thumb-video svg { position: relative; z-index: 1; width: 22px; height: 22px; }

.pd-chips { margin-bottom: 20px; }
.pd-price { font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--ink); line-height: 1; }
.pd-price small { font-size: 15px; font-weight: 400; color: var(--muted); margin-left: 8px; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 28px; }
.pd-desc { color: var(--body); margin-bottom: 28px; }

.pd-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin: 0; padding-top: 26px; border-top: 1px solid var(--line); }
.pd-facts dt {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.pd-facts dd { margin: 0; font-size: 16px; font-weight: 600; color: var(--ink); }
.pd-note { margin-top: 20px; }

/* Spec tables */
/* `start`, not stretch: spec groups have very different row counts and a
   stretched short card is mostly empty space. */
.spec-tables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; align-items: start; }
.spec-table { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px; }
.spec-table h3 { font-size: 16px; margin-bottom: 12px; }
.spec-table table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14.5px; vertical-align: top; }
.spec-table tr:first-child th, .spec-table tr:first-child td { border-top: 0; }
.spec-table th { width: 44%; font-weight: 500; color: var(--muted); padding-right: 16px; }
.spec-table td { color: var(--ink); font-weight: 600; }

/* Generic data table — variants, and anything else tabular */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.data-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.data-table th, .data-table td { text-align: left; padding: 15px 20px; font-size: 14.5px; }
.data-table thead th {
  background: var(--soft); color: var(--muted);
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.data-table tbody tr { border-top: 1px solid var(--line); }
.data-table td { color: var(--body); }
.data-table .v-price { font-family: var(--font-head); font-weight: 700; color: var(--ink); white-space: nowrap; }
.data-table .td-action { text-align: right; }

.prod-foot { padding: 0 20px 20px; }
.prod-price { display: block; font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.prod-price small { font-size: 13px; font-weight: 400; color: var(--muted); margin-left: 5px; }
.prod-actions { display: grid; grid-template-columns: auto 1fr; gap: 9px; }
.prod-actions .btn { padding-inline: 14px; }

/* Prose / article */
.prose, .article-body { font-size: 16.5px; line-height: 1.85; color: var(--body); }
.prose h2, .article-body h2 { margin-top: 1.6em; }
.prose h3, .article-body h3 { margin-top: 1.4em; }
.prose img, .article-body img { border-radius: var(--r); margin: 1.4em 0; }
.article-wrap { max-width: 820px; margin-inline: auto; }

/* Forms */
.field, .form-row { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row > label { margin-bottom: 0; }
.enquiry-form label { margin-bottom: 18px; }
.enquiry-form .req { color: var(--danger); }
.enquiry-form .btn { margin-top: 6px; }
label { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=search], input[type=date], textarea, select {
  width: 100%; padding: 13px 16px; font: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29,143,209,.12); }
textarea { min-height: 140px; resize: vertical; }
.label-hint { font-weight: 400; font-size: 12.5px; color: var(--muted); }
.form-error { color: var(--danger); font-size: 13.5px; margin-top: 6px; }
.form-success { background: var(--lime-tint); border: 1px solid #d6e6a4; color: #4a6b00; padding: 14px 18px; border-radius: var(--r-sm); margin-bottom: 20px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Small pieces reused across pages */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: var(--r-pill); background: var(--blue-tint); color: var(--blue-dark); font-size: 12.5px; font-weight: 700; font-family: var(--font-head); }
/* ---------- Quality ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
/* A card carrying a scan drops its own padding — the paper runs to the card
   edge and the text sits under it. */
.cert-card.has-scan { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.cert-scan {
  display: block; background: var(--soft); border-bottom: 1px solid var(--line);
  aspect-ratio: 1 / 1.3; overflow: hidden;
}
/* contain, not cover: a certificate cropped in half reads as a broken image. */
.cert-scan img { width: 100%; height: 100%; object-fit: contain; object-position: center top; }
.cert-body { display: block; }
.cert-card.has-scan .cert-body { padding: 22px 24px 26px; flex: 1; }
.cert-mark { display: inline-grid; place-items: center; min-width: 68px; height: 48px; padding: 0 16px; border-radius: var(--r-sm); background: var(--blue-tint); color: var(--blue-dark); font-family: var(--font-head); font-weight: 700; margin-bottom: 18px; }
.cert-card h3 { font-size: 18px; margin-bottom: 8px; }
.cert-card p { font-size: 14.5px; color: var(--muted); margin: 0; }
.cert-meta { margin-top: 10px !important; font-size: 13px !important; color: var(--body) !important; }
.cert-note {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 32px; padding: 24px 28px; border: 1px dashed var(--line-2); border-radius: var(--r-lg);
}
.cert-note p { margin: 0; font-size: 15px; color: var(--muted); }

/* ---------- Manufacturing ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cred { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.cred p { color: var(--body); }
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cred-badge { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.cred-badge b { display: block; font-family: var(--font-head); font-size: 22px; color: var(--blue); line-height: 1.1; margin-bottom: 5px; }
.cred-badge span { font-size: 14px; color: var(--muted); }
.download-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.download-item { display: flex; align-items: center; gap: 18px; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s, box-shadow .2s; }
.download-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.download-item.is-pending { background: transparent; border-style: dashed; }
.download-item.is-pending:hover { border-color: var(--line); box-shadow: none; }
.download-item.is-pending .dl-icon { background: var(--soft-2); color: var(--muted); }
.dl-icon {
  display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--r-sm); background: var(--blue-tint); color: var(--blue);
  font-family: ui-monospace, monospace; font-size: 12px; font-weight: 700;
}
.dl-text { min-width: 0; flex: 1; }
.dl-text b { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--ink); }
.dl-text span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.dl-go { color: var(--line-2); flex-shrink: 0; transition: color .2s, transform .2s var(--ease); }
.dl-go svg { width: 20px; height: 20px; }
.download-item:hover .dl-go { color: var(--blue); transform: translateY(2px); }
.dl-group { margin-bottom: 48px; }
.dl-group:last-child { margin-bottom: 0; }
.dl-group h2 { font-size: 22px; margin-bottom: 18px; }

/* ---------- Applications ---------- */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* The `tint` values in the database are near-black (they were picked for the
   old dark theme), so they sit as a hue wash over a brand-blue base rather than
   forming the whole gradient — otherwise every tile reads as the same black. */
.app-tile {
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
  min-height: 260px; padding: 30px; border-radius: var(--r-lg);
  background-image:
    radial-gradient(130% 110% at 12% 0%, var(--tint, transparent), transparent 60%),
    linear-gradient(158deg, #1e6ca4, #0b1a28 84%);
  color: #fff; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.app-tile::after {
  content: ""; position: absolute; inset: auto -30% -55% auto; width: 70%; aspect-ratio: 1;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.22), transparent 68%);
}
.app-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.app-tile-body { position: relative; z-index: 1; }
.app-tile-title { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.app-tile-desc { display: block; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.82); }
.app-tile-go {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--lime);
}
.app-tile-go svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.app-tile:hover .app-tile-go svg { transform: translateX(5px); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.blog-cover {
  display: block; aspect-ratio: 16 / 9; background: var(--navy-2) center / cover no-repeat;
}
.blog-cover-fallback {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 60%, var(--lime));
  opacity: .85;
}
.blog-body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.blog-cat {
  display: inline-block; align-self: flex-start; margin-bottom: 12px;
  padding: 4px 11px; border-radius: var(--r-pill); background: var(--blue-tint);
  color: var(--blue-dark); font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.blog-title { display: block; font-family: var(--font-head); font-size: 19px; font-weight: 700; line-height: 1.3; color: var(--ink); margin-bottom: 10px; }
.blog-card:hover .blog-title { color: var(--blue); }
.blog-excerpt {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1; font-size: 14.5px; line-height: 1.65; color: var(--muted); margin-bottom: 16px;
}
.blog-date { display: block; font-size: 13px; color: var(--muted); }
.article-cover { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: var(--r-lg); margin-bottom: 34px; }

/* ---------- Careers ---------- */
.job-list { display: grid; gap: 14px; max-width: 900px; margin-inline: auto; }
.job-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color .2s, box-shadow .25s var(--ease), transform .25s var(--ease);
}
.job-row:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-3px); }
.job-title { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.job-meta { font-size: 14px; color: var(--muted); }
.job-arrow { flex-shrink: 0; font-family: var(--font-head); font-size: 14.5px; font-weight: 700; color: var(--blue); white-space: nowrap; }

.careers-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.apply-card {
  position: sticky; top: 108px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.apply-card h2 { font-size: 22px; margin-bottom: 22px; }
.apply-card input[type=file] { width: 100%; font-size: 14px; color: var(--body); }

/* ---------- Search ---------- */
.search-form { display: flex; gap: 12px; max-width: 620px; margin-top: 22px; }
.search-form input { flex: 1; }
.search-group { font-size: 20px; margin: 40px 0 16px; }
.search-links { display: grid; gap: 10px; }
.search-links a {
  display: block; padding: 18px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.search-links a:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.search-links a span {
  display: block; font-family: var(--font); font-size: 14px; font-weight: 400; color: var(--muted); margin-top: 3px;
}
.search-count { font-size: 15px; color: var(--muted); margin-bottom: 26px; }
.search-count b { font-family: var(--font-head); font-size: 19px; color: var(--ink); margin-right: 4px; }

/* ---------- Pagination ---------- */
.pagination-wrap { display: flex; justify-content: center; margin-top: 44px; }
.pager { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.pager-link {
  display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 14px;
  border-radius: var(--r-sm); border: 1px solid var(--line);
  font-family: var(--font-head); font-size: 14.5px; font-weight: 600; color: var(--body);
  transition: border-color .2s, color .2s, background .2s;
}
.pager-link:hover { border-color: var(--blue); color: var(--blue); }
.pager-link.is-current { background: var(--blue); border-color: var(--blue); color: #fff; }
.pager-link.is-disabled { color: var(--line-2); border-color: var(--line); pointer-events: none; }
.pager-gap { padding: 0 4px; color: var(--muted); }

/* ---------- Quote basket ---------- */
.quote-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.quote-form-card {
  position: sticky; top: 108px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.quote-form-card h2 { font-size: 22px; margin-bottom: 4px; }
.quote-wa { margin-top: 10px; }

.quote-row {
  display: flex; align-items: center; gap: 18px; padding: 20px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px;
}
.qr-info { flex: 1; min-width: 0; }
.qr-info b { display: block; font-family: var(--font-head); font-size: 16px; color: var(--ink); }
.qr-info span { font-size: 13.5px; color: var(--muted); }
.qr-qty { display: flex; align-items: center; gap: 4px; padding: 4px; border: 1px solid var(--line-2); border-radius: var(--r-pill); }
.qr-btn {
  display: grid; place-items: center; width: 28px; height: 28px; padding: 0;
  border: 0; border-radius: 50%; background: var(--soft); color: var(--ink);
  font-size: 16px; line-height: 1; transition: background .2s, color .2s;
}
.qr-btn:hover { background: var(--blue); color: #fff; }
.qr-n { min-width: 26px; text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.qr-remove {
  width: 30px; height: 30px; padding: 0; border: 0; border-radius: 50%;
  background: transparent; color: var(--muted); font-size: 19px; line-height: 1;
  transition: background .2s, color .2s;
}
.qr-remove:hover { background: #fdeceb; color: var(--danger); }

/* Hidden until the basket has something in it. */
.quote-count { display: none; }
.quote-count.has-items {
  display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: var(--r-pill); background: #16250a; color: var(--lime);
  font-size: 12px; font-weight: 700; line-height: 1;
}

.quote-toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 1200;
  padding: 13px 22px; border-radius: var(--r-pill);
  background: var(--navy); color: #fff; font-size: 14.5px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 16px); opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.quote-toast.show { opacity: 1; transform: translate(-50%, 0); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.process-step h3 { font-size: 18px; margin: 14px 0 8px; }
.process-step p { font-size: 14.5px; color: var(--muted); margin: 0; }
.ps-num { display: block; font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--blue-tint); line-height: 1; }
/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.contact-form-card h2 { font-size: 26px; margin-bottom: 4px; }
.contact-form-note { font-size: 14.5px; color: var(--muted); margin-bottom: 26px; }

.contact-details { display: grid; gap: 16px; }
.contact-block { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 28px; }
.contact-block h3 {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.contact-block p { font-size: 15px; color: var(--body); margin: 0; }
.contact-big { display: block; font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.contact-big:hover { color: var(--blue); }
.contact-link { font-size: 16px; font-weight: 600; color: var(--blue); }
.contact-link:hover { color: var(--blue-dark); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 860px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%;
  padding: 20px 24px; background: none; border: 0; text-align: left;
  font-family: var(--font-head); font-size: 16.5px; font-weight: 700; color: var(--ink);
}
.faq-q:hover { color: var(--blue); }
/* Drawn, not typed: a "+" glyph never lines up with a "−" at the same weight. */
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; inset: 50% 0 auto; height: 2px; border-radius: 2px;
  background: var(--blue); transform: translateY(-50%); transition: transform .25s var(--ease);
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translateY(-50%) rotate(0); }
.faq-a { display: none; padding: 0 24px 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15.5px; color: var(--body); margin: 0; }

/* ============================ 14 · MOTION ============================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(.94); }
[data-reveal].is-in { transform: none; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }
[data-reveal-delay="4"] { transition-delay: .36s; }
[data-reveal-delay="5"] { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================ 15 · RESPONSIVE ============================ */
@media (max-width: 1180px) {
  .cat-grid > * { flex-basis: calc((100% - 2 * 22px) / 3); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .catalog-layout { grid-template-columns: 238px minmax(0, 1fr); gap: 30px; }
  .prod-grid, .prod-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .main-nav ul { gap: 20px; }
  .main-nav a { font-size: 14px; }
  .header-phone small, .header-phone b { font-size: 13px; }
}
@media (max-width: 992px) {
  :root { --section-y: 68px; }
  .pd-grid { grid-template-columns: 1fr; gap: 34px; }
  .prose-wrap { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .quote-layout { grid-template-columns: 1fr; gap: 26px; }
  .careers-grid { grid-template-columns: 1fr; gap: 30px; }
  .apply-card { position: static; }
  .cred { grid-template-columns: 1fr; gap: 30px; }
  .cert-grid, .blog-grid, .app-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .quote-form-card { position: static; }
  .contact-form-card { padding: 28px; }
  .stat-stack { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .review-grid, .buyer-roll { grid-template-columns: 1fr 1fr; }
  .spec-tables { grid-template-columns: 1fr; }
  .download-list { grid-template-columns: 1fr; }
  .case-facts { grid-template-columns: 1fr 1fr; gap: 20px; }
  .case-grid { grid-template-columns: 1fr; gap: 24px; }
  /* The rail stops being a rail — it sits above the results and scrolls away. */
  .catalog-layout { grid-template-columns: 1fr; gap: 30px; }
  .filter-rail { position: static; }
  .filter-rail .filter-list { display: flex; flex-wrap: wrap; gap: 0 18px; }
  .filter-cta { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-only { display: block; }
  .header-row { gap: 12px; }
  .brand img { width: 140px; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-top: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 10px var(--gutter) 18px; max-height: calc(100vh - 88px); overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-10px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  }
  .main-nav.open { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav a::after { display: none; }
  .main-nav li:last-child a { border-bottom: 0; }
  .hero { min-height: 0; }
  /* Bottom padding clears the dots and the floating WhatsApp button, which
     otherwise sit on top of the two call-to-action buttons. */
  .hero-inner { padding: 72px 0 104px; }
  .hero-caption { display: none; }
  /* The arrows sat at mid-height, straight across the paragraph — at this width
     there is no margin to put them in. Swipe and the dots do the same job. */
  .hero-arrow { display: none; }
  .hero h1 { font-size: 30px; line-height: 1.16; }
  .hero-lead { font-size: 16.5px; }
  .hero-text { font-size: 15.5px; margin-bottom: 26px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero-dots { bottom: 26px; }
  .hero-dots .swiper-pagination-bullet { width: 22px; height: 4px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid, .prod-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); padding: 28px var(--gutter); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 700px) {
  :root { --section-y: 56px; }
  .section-title { margin-bottom: 34px; }
  .section-head { margin-bottom: 30px; }
  .cat-grid { gap: 14px; }
  .cat-grid > * { flex-basis: calc((100% - 14px) / 2); }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .proj-grid { grid-template-columns: 1fr; }
  .team-grid, .review-grid, .buyer-roll { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-row { flex-wrap: wrap; gap: 12px; }
  .cert-grid, .blog-grid, .app-grid, .process-grid, .cred-grid { grid-template-columns: 1fr; }
  .job-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .search-form { flex-direction: column; }
  .qr-info { flex-basis: 100%; }
  .form-row > label { margin-bottom: 18px; }
  /* Both classes are on the same element and the .stat-row rule below has equal
     specificity, so this has to outrank it or the card stays two columns. With
     its 32px side padding that needs 344px inside a 316px container. */
  .stat-row.stat-stack { grid-template-columns: 1fr; }
  .stat-stack { padding: 26px 22px; }
  .pd-facts { grid-template-columns: 1fr; gap: 14px; }
  .pd-price { font-size: 28px; }
  .case-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .case-cover img { aspect-ratio: 4 / 3; }
  .prod-grid, .prod-grid-3 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .marquee-item { font-size: 16px; }
  .hero-caption { right: 16px; bottom: 20px; }
  .hero-dots { left: 16px; bottom: 26px; }
  .cta-item { flex-wrap: wrap; }
  .cta-item .btn, .cta-phone { margin-left: 0; }
}
@media (max-width: 420px) {
  .cat-grid > * { flex-basis: 100%; }
  .why-grid { grid-template-columns: 1fr; }
}

/* Counters shown inside the About column rather than in a band of their own. */
.stat-inline { grid-template-columns: repeat(4, auto); justify-content: start; gap: 34px; margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--line-2); }
.stat-inline .stat { text-align: left; }
.stat-inline .stat b { font-size: 36px; }
@media (max-width: 700px) { .stat-inline { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* On a phone the logo, the quote button and the hamburger together are wider
   than the screen, so the button moves into the drawer instead. */
@media (max-width: 620px) {
  .header-right > .btn { display: none; }
  .brand img { width: 132px; }
  .header-row { min-height: 68px; gap: 10px; }
  .main-nav { max-height: calc(100vh - 68px); }
}
.nav-cta { margin-top: 14px; }
.nav-cta .btn { width: 100%; }

/* Sideways reveals shift a full-width block off-canvas on a phone before it
   animates in. Narrow screens get the vertical reveal instead. */
@media (max-width: 700px) {
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(26px); }
}

/* ---------- Review photo / video ---------- */
/* The Google profile picture reuses the same circle as the initial. */
img.review-av { object-fit: cover; }
.review-media {
  display: block; width: 100%; aspect-ratio: 16 / 10; margin-bottom: 16px;
  border-radius: var(--r); overflow: hidden; background: var(--soft) center/cover;
}
.review-media img { width: 100%; height: 100%; object-fit: cover; }
.review-media-video { position: relative; display: grid; place-items: center; background-color: #0b1722; }
.review-media-video::before { content: ""; position: absolute; inset: 0; background: rgba(8, 20, 32, .34); }
.review-play {
  position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; color: #0b1722;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28); transition: transform .2s var(--ease);
}
.review-play svg { width: 21px; height: 21px; margin-left: 2px; }
.review-media-video:hover .review-play { transform: scale(1.09); }

/* ---------- Review photo / video ---------- */
/* img.review-av: the Google profile picture uses the same circle as the initial. */
img.review-av { object-fit: cover; }
.review-media {
  display: block; width: 100%; aspect-ratio: 16 / 10; margin-bottom: 16px;
  border-radius: var(--r); overflow: hidden; background: var(--soft) center/cover;
}
.review-media img { width: 100%; height: 100%; object-fit: cover; }
.review-media-video { position: relative; display: grid; place-items: center; background-color: #0b1722; }
.review-media-video::before { content: ""; position: absolute; inset: 0; background: rgba(8, 20, 32, .34); }
.review-play {
  position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; color: #0b1722;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28); transition: transform .2s var(--ease);
}
.review-play svg { width: 21px; height: 21px; margin-left: 2px; }
.review-media-video:hover .review-play { transform: scale(1.09); }
