/* ==========================================================================
   MERAH ENGINEERING — V4 (revamp: purple + yellow, real photography, home slider)
   Direction: quiet, premium corporate. Restraint over devices: sentence-case
   Manrope headings, one navy + one blue, hairlines instead of heavy fills,
   photography carrying the atmosphere, generous rhythm. Everything the client
   approved in v2 is kept (light banners, blue, banner photos, WhatsApp popup,
   transparent logos); the *presentation* is tightened.
   ========================================================================== */
:root {
  /* PALETTE — yellow + black, per client brief (7 Sep, revised).
     Token NAMES are inherited from v3/v4 so every rule keeps working; only the
     VALUES changed. Yellow is the accent (buttons, highlights, tints); text and
     dark surfaces are black/charcoal; text-sized accents use a dark amber so
     they stay readable on white (yellow itself is ~1.9:1 on white). */
  --navy-900: #111111;   /* footer, top bar, photo overlays */
  --navy-800: #1C1C1E;   /* dark buttons, headings accent */
  --navy-700: #2A2A2E;
  --blue-600: #8A6500;   /* dark amber: eyebrows, links, icons (5.3:1 on white) */
  --blue-500: #A67C00;   /* hover */
  --blue-200: #F2D98A;   /* borders / hover tint */
  --blue-100: #FBEFC2;
  --blue-50:  #FFF8E1;   /* pale yellow tint for icon tiles, chips */
  --yellow-500: #F5B700; /* accent CTA — black text on it (10:1) */
  --yellow-600: #E0A800;
  --yellow-100: #FFF3CC;
  --on-yellow: #111111;

  --ink: #111111;
  --slate: #3A3A3A;
  --muted: #5F5F5F;
  --line: #E6E4DE;
  --line-2: #F0EEE8;
  --bg: #FFFFFF;
  --bg-2: #F7F6F1;

  --wa: #0E7265;
  --wa-bright: #25D366;

  --font-head: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --r-sm: 8px; --r: 12px; --r-lg: 20px;
  --sh-1: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.06);
  --sh-2: 0 6px 18px -4px rgba(16,24,40,.10), 0 2px 6px rgba(16,24,40,.05);
  --sh-3: 0 24px 48px -12px rgba(16,24,40,.22);
  --z-header: 100; --z-float: 95; --z-bar: 90;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; overflow-x: clip; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--slate); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-500); }
ul { margin: 0; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
h1 { font-size: clamp(2.35rem, 4.3vw, 3.55rem); }
h2 { font-size: clamp(1.75rem, 2.9vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--blue-600); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-2); }
@media (max-width: 760px) { .section { padding: 68px 0; } .section--tight { padding: 52px 0; } }

.eyebrow { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px; }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; color: var(--muted); margin: 0; }
.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-weight: 600; font-size: .95rem; padding: 13px 22px; border-radius: var(--r-sm); border: 1px solid transparent; cursor: pointer; min-height: 48px; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--navy-800); color: #fff; }
.btn--primary:hover { background: var(--navy-900); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn--blue { background: var(--blue-600); color: #fff; }
.btn--blue:hover { background: var(--blue-500); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn--secondary { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--sh-1); }
.btn--secondary:hover { border-color: #C9CFD8; color: var(--ink); transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #0B5C52; color: #fff; transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn--wa svg { width: 19px; height: 19px; }
.btn--lg { padding: 15px 26px; font-size: 1rem; min-height: 52px; }
.btn--sm { padding: 10px 16px; font-size: .88rem; min-height: 40px; }
.link { font-weight: 600; color: var(--blue-600); display: inline-flex; align-items: center; gap: 6px; }
.link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link:hover svg { transform: translateX(3px); }

/* ---------- Top bar + header ---------- */
.topbar { background: var(--navy-900); color: rgba(255,255,255,.72); font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { color: rgba(255,255,255,.72); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; color: var(--yellow-500); flex: none; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-right { display: flex; gap: 22px; }
@media (max-width: 760px) { .topbar-right .topbar-email { display: none; } .topbar { font-size: .76rem; } }

.site-header { position: sticky; top: 0; z-index: var(--z-header); background: rgba(255,255,255,.92); backdrop-filter: blur(12px) saturate(1.3); border-bottom: 1px solid var(--line); transition: box-shadow .2s ease; }
.site-header.is-stuck { box-shadow: var(--sh-2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 78px; }
.brand { display: flex; align-items: center; flex: 0 1 auto; min-width: 180px; }
.brand img { width: 100%; max-width: 280px; }
.site-nav ul { display: flex; gap: 4px; list-style: none; }
.site-nav a { display: block; padding: 9px 13px; font-size: .93rem; font-weight: 500; color: var(--ink); border-radius: var(--r-sm); position: relative; white-space: nowrap; }
.site-nav a:hover { color: var(--blue-600); background: var(--blue-50); }
.site-nav a[aria-current="page"] { color: var(--blue-600); font-weight: 600; }
.site-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px; background: var(--blue-600); border-radius: 2px; }
.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.header-phone { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.header-phone svg { width: 28px; height: 28px; color: var(--wa); flex: none; }
.header-phone .label { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.2; }
.header-phone .num { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; line-height: 1.15; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 46px; height: 46px; padding: 9px; border-radius: var(--r-sm); color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
@media (max-width: 1220px) { .header-phone { display: none; } }
@media (max-width: 1060px) { .header-cta .btn { display: none; } }
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .brand img { max-width: 230px; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--sh-3); display: none; padding: 10px 16px 16px; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 2px; }
  .site-nav a { padding: 13px 12px; font-size: 1.02rem; border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .site-nav a[aria-current="page"]::after { display: none; }
}

/* ---------- Home hero (light, asymmetric photo) ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(900px 500px at 88% 10%, var(--blue-50), transparent 60%), #fff; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: 56px; align-items: center; padding: 84px 0 92px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--blue-600); }
.hero .lead { max-width: 34rem; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.hero-proof li { list-style: none; display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 16px; height: 16px; color: var(--blue-600); flex: none; }
.hero-proof img { width: 84px; height: auto; }
.hero-media { position: relative; }
.hero-photo { width: 100%; aspect-ratio: 11 / 12; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-3); }
.hero-card { position: absolute; left: -28px; bottom: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px 16px 16px; box-shadow: var(--sh-3); display: flex; align-items: center; gap: 14px; max-width: 320px; }
.hero-card .ic { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.hero-card .ic svg { width: 22px; height: 22px; }
.hero-card strong { display: block; font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1rem; letter-spacing: -.01em; }
.hero-card span { font-size: .84rem; color: var(--muted); }
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 52px 0 60px; }
  .hero-photo { aspect-ratio: 4 / 3; }
  .hero-card { left: 16px; bottom: 16px; }
}

/* ---------- Stats strip ---------- */
.stats { border-block: 1px solid var(--line); background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.stat { padding: 30px 24px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat .value { font-family: var(--font-head); font-weight: 800; font-size: 2rem; letter-spacing: -.02em; color: var(--navy-800); line-height: 1.05; }
.stat .label { color: var(--muted); font-size: .9rem; margin-top: 6px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .stat:nth-child(3) { border-left: 0; } .stat:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 1000px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0,1fr); } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--blue-200); }
.card .icon { width: 46px; height: 46px; border-radius: 11px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; margin-bottom: 20px; }
.card .icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.card .link { font-size: .92rem; }

/* Photo tiles (products) */
.tile { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.tile-media { position: relative; background: var(--bg-2); overflow: hidden; }
.tile-media img { width: 100%; aspect-ratio: 300/192; object-fit: cover; transition: transform .45s ease; }
.tile:hover .tile-media img { transform: scale(1.05); }
.tile-badge { position: absolute; top: 10px; left: 10px; background: rgba(17,17,17,.86); color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.tile-badge--recon { background: var(--blue-600); }
.tile figcaption { padding: 14px 16px 16px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .98rem; letter-spacing: -.01em; }
.tile figcaption small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: .82rem; margin-top: 2px; }

/* Category cards */
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.pcard-media { background: var(--bg-2); border-bottom: 1px solid var(--line-2); min-height: 210px; display: grid; place-items: center; padding: 26px; }
.pcard-media img { max-height: 170px; width: auto; object-fit: contain; }
.pcard-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.pcard-body ul { list-style: none; margin: 8px 0 16px; }
.pcard-body li { position: relative; padding-left: 18px; color: var(--muted); font-size: .93rem; margin-bottom: 5px; }
.pcard-body li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 2px; background: var(--blue-600); border-radius: 2px; }
.pcard-body .link { margin-top: auto; font-size: .92rem; }

/* Checklist */
.checklist { list-style: none; display: grid; gap: 11px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--slate); }
.checklist svg { width: 20px; height: 20px; color: var(--blue-600); flex: none; margin-top: 3px; }

/* Split */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 64px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: minmax(0,1fr); gap: 36px; } }
.split-photo img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-3); object-fit: cover; aspect-ratio: 4/3; }
.split-photo--tall img { aspect-ratio: 9/11; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-1); }
.panel--alt { background: var(--bg-2); }

/* Mini specs */
.mini-specs { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin: 22px 0 26px; }
.mini-spec { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; background: #fff; }
.mini-spec strong { display: block; font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.05rem; letter-spacing: -.01em; }
.mini-spec span { font-size: .78rem; color: var(--muted); }
@media (max-width: 480px) { .mini-specs { grid-template-columns: 1fr; } }

/* Brands row */
.brands { border-block: 1px solid var(--line); }
.brands-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 40px; padding: 26px 0; }
.brands-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-right: 8px; }
.brands span { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; color: #98A2B3; }

/* Process */
.process { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; position: relative; }
.process::before { content: ""; position: absolute; left: 4%; right: 4%; top: 22px; height: 1px; background: var(--line); }
.step { position: relative; padding-top: 14px; }
.step .num { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: var(--blue-600); margin-bottom: 18px; position: relative; box-shadow: var(--sh-1); }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, minmax(0,1fr)); } .process::before { display: none; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-600); }
.faq .chev { flex: none; width: 20px; height: 20px; color: var(--blue-600); transition: transform .2s ease; }
.faq details[open] .chev { transform: rotate(180deg); }
.faq .faq-a { padding: 0 4px 22px; color: var(--muted); max-width: 64ch; }
.faq .faq-a p:last-child { margin-bottom: 0; }

/* CTA band */
.cta { position: relative; overflow: hidden; color: #fff; background: var(--navy-900); }
.cta::before { content: ""; position: absolute; inset: 0; background: url(../images/photo-pallets.jpg) center/cover no-repeat; opacity: .16; filter: saturate(.6); }
.cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,17,.98), rgba(17,17,17,.6)); }
.cta-inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; padding: 78px 0; }
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.78); margin: 0; max-width: 34rem; }
.cta .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta .btn--secondary { background: #fff; border-color: #fff; }

/* Inner page banner */
.banner { position: relative; color: #fff; padding: 72px 0 64px; background-color: var(--navy-900); background-size: cover; background-position: center; }
.banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,17,.94) 0%, rgba(17,17,17,.80) 45%, rgba(17,17,17,.45) 100%); }
.banner > .container { position: relative; z-index: 1; }
.banner h1 { color: #fff; font-size: clamp(2.1rem, 3.8vw, 3rem); margin-bottom: 10px; }
.banner .lead { color: rgba(255,255,255,.82); max-width: 44rem; margin: 0; }
.banner .eyebrow { color: var(--yellow-500); }
.crumbs { margin-bottom: 20px; font-size: .84rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li { color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.35); }
.crumbs a { color: rgba(255,255,255,.7); }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current] { color: #fff; }
.banner--products { background-image: url(../images/banner-products.jpg); }
.banner--services { background-image: url(../images/banner-services.jpg); }
.banner--about    { background-image: url(../images/banner-about.jpg); }
.banner--contact  { background-image: url(../images/banner-contact.jpg); }

/* AntOn product cards */
.apcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.apcard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.apcard-media { position: relative; background: var(--bg-2); border-bottom: 1px solid var(--line-2); min-height: 230px; display: grid; place-items: center; padding: 24px; }
.apcard-media img { max-height: 180px; width: auto; }
.apcard-model { position: absolute; top: 14px; left: 14px; background: var(--navy-800); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .86rem; letter-spacing: .02em; padding: 6px 12px; border-radius: 999px; }
.apcard-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.apcard-body h3 { font-size: 1.05rem; margin-bottom: 14px; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.spec { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 11px; background: #fff; }
.spec .k { display: block; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.spec .v { display: block; font-family: var(--font-head); font-weight: 800; font-size: .96rem; color: var(--ink); letter-spacing: -.01em; }
.price { margin: 4px 0 12px; color: var(--muted); font-size: .9rem; }
.price strong { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--navy-800); letter-spacing: -.01em; }
.apcard .btn { margin-top: auto; width: 100%; }
.pillar { text-align: left; }
.pillar .icon { width: 46px; height: 46px; border-radius: 11px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; margin-bottom: 18px; }
.pillar .icon svg { width: 22px; height: 22px; }

/* Contact */
.info-list { list-style: none; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list svg { width: 20px; height: 20px; color: var(--blue-600); flex: none; margin-top: 3px; }
.info-list b { display: block; color: var(--ink); font-weight: 600; font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .86rem; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; font: inherit; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); min-height: 48px; transition: border-color .15s ease, box-shadow .15s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-100); }
.map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-1); margin-top: 40px; }
.map iframe { display: block; width: 100%; height: 400px; border: 0; }

/* Footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.3fr); gap: 40px; padding: 68px 0 44px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: minmax(0,1fr); gap: 30px; } }
.footer-brand img { max-width: 240px; }
.footer-brand p { margin-top: 18px; max-width: 30rem; }
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: .95rem; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--yellow-500); flex: none; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.5); }
.bizsafe img { width: 110px; height: auto; }
.bizsafe--lg img { width: 140px; }

/* Floating WhatsApp + popup + mobile bar */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: var(--z-float); width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 22px rgba(14,114,101,.35), 0 2px 6px rgba(16,24,40,.2); transition: transform .18s ease, background .18s ease; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { background: #0B5C52; color: #fff; transform: translateY(-2px); }
.wa-float__label { position: absolute; right: calc(100% + 12px); white-space: nowrap; background: var(--navy-900); color: #fff; padding: 8px 13px; border-radius: var(--r-sm); font-size: .86rem; font-weight: 500; opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.wa-float:hover .wa-float__label { opacity: 1; transform: none; }
.wa-float__pip { position: absolute; top: 1px; right: 1px; width: 14px; height: 14px; border-radius: 50%; background: var(--blue-500); border: 2.5px solid #fff; opacity: 0; transform: scale(.4); transition: opacity .2s ease, transform .25s ease; }
.wa-float.has-pip .wa-float__pip { opacity: 1; transform: none; }
@media (max-width: 720px) { .wa-float { display: none; } }

.wa-pop { position: fixed; right: 22px; bottom: 94px; z-index: var(--z-float); width: min(320px, calc(100vw - 44px)); background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; box-shadow: var(--sh-3); display: flex; align-items: center; gap: 12px; opacity: 0; visibility: hidden; transform: translateY(12px) scale(.97); transform-origin: bottom right; transition: opacity .25s ease, transform .3s ease, visibility .25s; }
.wa-pop.is-shown { opacity: 1; visibility: visible; transform: none; }
.wa-pop::after { content: ""; position: absolute; right: 24px; bottom: -7px; width: 14px; height: 14px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(45deg); }
.wa-pop__avatar { position: relative; flex: none; display: block; }
.wa-pop__avatar img { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-2); }
.wa-pop__online { position: absolute; right: -1px; bottom: 1px; width: 13px; height: 13px; border-radius: 50%; background: #22C55E; border: 2.5px solid #fff; }
.wa-pop__body { min-width: 0; flex: 1; display: block; padding-right: 16px; }
.wa-pop__name { display: block; font-weight: 700; font-size: .93rem; color: var(--ink); line-height: 1.25; }
.wa-pop__role { display: block; font-size: .76rem; color: var(--muted); margin-bottom: 4px; }
.wa-pop__msg { display: block; font-size: .87rem; color: var(--slate); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-pop__close { position: absolute; top: 6px; right: 8px; width: 28px; height: 28px; display: grid; place-items: center; background: none; border: 0; border-radius: 50%; cursor: pointer; color: var(--muted); font-size: 1.1rem; }
.wa-pop__close:hover { background: var(--bg-2); color: var(--ink); }
.wa-pop__go { position: absolute; inset: 0; border-radius: 14px; }
@media (max-width: 720px) { .wa-pop { right: 12px; left: 12px; width: auto; bottom: 84px; } .wa-pop::after { display: none; } }

.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-bar); background: #fff; border-top: 1px solid var(--line); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); grid-template-columns: 1fr 1fr; gap: 10px; box-shadow: 0 -6px 18px rgba(16,24,40,.08); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; border-radius: var(--r-sm); font-weight: 600; font-size: .95rem; }
.mobile-cta svg { width: 18px; height: 18px; }
.mobile-cta .wa { background: var(--wa); color: #fff; }
.mobile-cta .enquire { background: var(--navy-800); color: #fff; }
@media (max-width: 720px) { .mobile-cta { display: grid; } body { padding-bottom: 72px; } }

/* Motion */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .07s; } .reveal-d2 { transition-delay: .14s; } .reveal-d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { transition: none !important; animation: none !important; } .reveal { opacity: 1; transform: none; } }

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--navy-900); color: #fff; padding: 12px 20px; }
.skip-link:focus { left: 12px; top: 12px; color: #fff; }
.v3-flag { position: fixed; left: 14px; bottom: 16px; z-index: 120; background: var(--navy-800); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; box-shadow: var(--sh-2); opacity: .92; pointer-events: none; }
@media (max-width: 940px) { .v3-flag { display: none; } }


/* ==========================================================================
   V4 ADDITIONS
   ========================================================================== */
.btn--accent { background: var(--yellow-500); color: var(--on-yellow); }
.btn--accent:hover { background: var(--yellow-600); color: var(--on-yellow); transform: translateY(-1px); box-shadow: var(--sh-2); }
.stat .value { color: var(--navy-800); }
.eyebrow--y { color: var(--yellow-600); }

/* --- Home hero slider --- */
.slider { position: relative; overflow: hidden; background: var(--navy-900); color: #fff; height: clamp(440px, 52vw, 640px); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.slide.is-active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,17,.92) 0%, rgba(17,17,17,.72) 42%, rgba(17,17,17,.18) 100%); }
.slide-caption { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }
.slide-caption .inner { max-width: 620px; }
.slide-caption .eyebrow { color: var(--yellow-500); }
.slide-caption h1, .slide-caption h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 14px; }
.slide-caption p { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 34rem; margin-bottom: 26px; }
.slide-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.slider-nav { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(17,17,17,.45); color: #fff; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(6px); transition: background .18s ease; }
.slider-nav:hover { background: rgba(17,17,17,.8); }
.slider-nav svg { width: 20px; height: 20px; }
.slider-nav--prev { left: 18px; } .slider-nav--next { right: 18px; }
.slider-dots { position: absolute; z-index: 3; left: 0; right: 0; bottom: 20px; display: flex; justify-content: center; gap: 8px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: transform .18s ease, background .18s ease; }
.slider-dots button[aria-current="true"] { background: var(--yellow-500); transform: scale(1.25); }
.slider-progress { position: absolute; z-index: 3; left: 0; bottom: 0; height: 3px; background: var(--yellow-500); width: 0; }
.slider.is-playing .slider-progress { animation: slideprog var(--slide-ms, 6000ms) linear forwards; }
@keyframes slideprog { from { width: 0 } to { width: 100% } }
@media (max-width: 760px) {
  .slider { height: auto; min-height: 520px; }
  .slide { position: relative; display: none; }
  .slide.is-active { display: block; }
  .slide img { position: absolute; inset: 0; }
  .slide-caption { position: relative; padding: 64px 0 76px; }
  .slider-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) { .slide { transition: none; } .slider.is-playing .slider-progress { animation: none; } }

/* --- Brand logos strip --- */
.brand-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 12px; }
@media (max-width: 1000px) { .brand-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 560px) { .brand-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.brand-tile { border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; min-height: 64px; display: grid; place-items: center; padding: 10px 12px; font-family: var(--font-head); font-weight: 800; letter-spacing: -.01em; color: #6B7280; font-size: 1.05rem; text-align: center; transition: color .18s ease, border-color .18s ease, transform .18s ease; }
.brand-tile:hover { color: var(--navy-800); border-color: var(--blue-200); transform: translateY(-2px); }
.brand-tile img { max-height: 34px; width: auto; }

/* --- Service feature blocks (photo + text, alternating) --- */
.feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: center; padding: 40px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature:nth-child(even) .feature-media { order: 2; }
.feature-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-2); }
.feature .num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--yellow-500); color: var(--on-yellow); font-family: var(--font-head); font-weight: 800; margin-bottom: 14px; }
@media (max-width: 900px) { .feature { grid-template-columns: minmax(0,1fr); gap: 24px; } .feature:nth-child(even) .feature-media { order: 0; } }

/* --- Photo gallery (masonry-ish) --- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.gallery figure { margin: 0; border-radius: var(--r); overflow: hidden; background: var(--bg-2); position: relative; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .45s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; font-size: .8rem; color: #fff; background: linear-gradient(to top, rgba(17,17,17,.85), transparent); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* --- battery chips --- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--blue-200); background: var(--blue-50); color: var(--navy-800); border-radius: 999px; padding: 7px 14px; font-size: .88rem; font-weight: 600; }

/* --- CTA band photo source --- */
.cta::before { background-image: url(../images/photo-cta.jpg); }
.v3-flag { background: var(--navy-800); }

/* --- new two-line logo lockup: size by height in the header, cap width in the footer --- */
/* the wordmark is a wide ~5:1 lockup: size it by height */
.header-inner { min-height: 84px; }
.brand img { width: auto; height: 46px; max-width: none; }
@media (max-width: 920px) { .header-inner { min-height: 72px; } .brand img { height: 36px; max-width: none; } }
.footer-brand img { max-width: 240px; }


/* ==========================================================================
   V5 — yellow + black specifics
   ========================================================================== */
.btn--blue { background: var(--yellow-500); color: var(--on-yellow); }
.btn--blue:hover { background: var(--yellow-600); color: var(--on-yellow); }
.btn--primary { background: var(--navy-800); color: #fff; }
.stat .value { color: var(--ink); }
.stat .value::after { content: ""; display: block; width: 28px; height: 3px; background: var(--yellow-500); margin: 8px auto 0; border-radius: 2px; }
.section-head h2::after, .split h2::after { content: ""; display: block; width: 40px; height: 4px; background: var(--yellow-500); border-radius: 2px; margin-top: 14px; }
.section-head--center h2::after { margin-left: auto; margin-right: auto; }
.card .icon, .pillar .icon, .hero-card .ic { background: var(--yellow-100); color: var(--ink); }
.card:hover { border-color: var(--yellow-500); }
.brand-tile:hover { border-color: var(--yellow-500); color: var(--ink); }
.chip { border-color: var(--blue-200); background: var(--yellow-100); color: var(--ink); }
.site-nav a:hover { background: var(--yellow-100); color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a[aria-current="page"]::after { background: var(--yellow-500); height: 3px; }
.step .num { background: var(--yellow-500); border-color: var(--yellow-500); color: var(--on-yellow); }
.tile-badge--recon { background: var(--yellow-500); color: var(--on-yellow); }
.apcard-model { background: var(--yellow-500); color: var(--on-yellow); }
.wa-float__pip { background: var(--yellow-500); }
.faq .chev { color: var(--ink); }
.faq summary:hover { color: var(--blue-600); }
.link { color: var(--blue-600); }
.slider-nav { background: rgba(17,17,17,.55); }
.slider-nav:hover { background: var(--yellow-500); color: var(--on-yellow); border-color: var(--yellow-500); }
.topbar { background: var(--navy-900); }
.site-footer h4 { color: var(--yellow-500); }
.v3-flag { background: var(--yellow-500); color: var(--on-yellow); }


/* ---- Brand strip: real logos (Sep 2026) ---- */
.brand-tile { padding: 14px 18px; min-height: 84px; }
.brand-tile img { max-height: 40px; max-width: 100%; width: auto; height: auto; }
.brand-tile--text { display: grid; place-items: center; text-align: center; line-height: 1.1; }
.brand-tile--text b { font-size: 1.15rem; font-weight: 800; color: var(--ink); letter-spacing: .01em; }
.brand-tile--text small { font-size: .72rem; color: var(--muted); margin-top: 3px; }
@media (max-width: 640px) { .brand-tile { min-height: 72px; padding: 12px 14px; } .brand-tile img { max-height: 32px; } }
/* Phones: two columns so wide wordmarks (Jungheinrich, Heli, Staxx) stay legible; an odd last tile spans the row */
@media (max-width: 560px) {
  .brand-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .brand-tile { min-height: 64px; padding: 12px 18px; }
  .brand-tile img { max-height: 30px; }
  .brand-tile:last-child:nth-child(odd) { grid-column: span 2; }
}

/* --- Enquiry form: honeypot + validation notice --- */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-note { border-radius: var(--r-sm); padding: 12px 14px; margin-bottom: 16px; font-size: .95rem; }
.form-note--error { background: #FDECEC; border: 1px solid #F3C0C0; color: #8A1F1F; }


/* --- Footer credit --- */
.footer-credit a { color: rgba(255,255,255,.72); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); transition: color .18s ease, border-color .18s ease; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: var(--yellow-500); border-bottom-color: var(--yellow-500); }


/* --- Equipment pages (Sep 2026) --- */
.banner--reach  { background-image: url(../images/fleet-toyota-reach.jpg); }
.banner--toyota { background-image: url(../images/fleet-toyota-lineup.jpg); }
.banner--pallet { background-image: url(../images/fleet-pallet-trucks.jpg); }
.banner--brands { background-image: url(../images/fleet-workshop.jpg); }
a.brand-tile { text-decoration: none; }
a.pcard { display: block; text-decoration: none; color: inherit; }
a.pcard:hover h3 { color: var(--blue-600); }
.pcard--link { cursor: pointer; }
.brand-list { display: grid; gap: 0; }
.brand-row { display: grid; grid-template-columns: 150px 1fr; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.brand-row:last-child { border-bottom: 0; }
.brand-row-logo { display: grid; place-items: center; min-height: 56px; }
.brand-row-logo img { max-height: 44px; max-width: 130px; width: auto; }
.brand-row-logo b { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); text-align: center; }
.brand-row h3 { margin-bottom: 6px; }
.brand-row h3 small { font-weight: 500; color: var(--muted); font-size: .8rem; margin-left: 8px; }
.brand-row p { margin: 0; color: var(--slate); }
@media (max-width: 640px) { .brand-row { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; } .brand-row-logo { justify-items: start; min-height: 0; } }


/* --- Header submenus (Services / Products) --- */
.site-nav li { position: relative; }
.site-nav li.has-sub { display: flex; align-items: center; }
.site-nav li.has-sub > a { padding-right: 24px; }
.site-nav li.has-sub > a::before { content: ""; position: absolute; right: 9px; top: 50%; margin-top: -2px; border: 4px solid transparent; border-top: 5px solid currentColor; border-bottom: 0; opacity: .7; }
.site-nav li.has-sub > a[aria-current="page"]::after { right: 24px; }   /* underline stops before the caret */
.site-nav .sub-toggle { display: none; }
.site-nav .sub { position: absolute; top: calc(100% + 6px); left: 0; z-index: 6; min-width: 230px; list-style: none; margin: 0; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-3); display: none; }
.site-nav .sub::before { content: ""; position: absolute; left: 0; right: 0; top: -8px; height: 8px; }   /* hover bridge across the gap */
.site-nav li.has-sub:hover > .sub, .site-nav li.has-sub:focus-within > .sub, .site-nav li.has-sub.is-open > .sub { display: block; }
.site-nav .sub li { position: static; }
.site-nav .sub a { padding: 9px 12px; font-size: .9rem; white-space: nowrap; border-radius: var(--r-sm); }
.site-nav .sub a[aria-current="page"]::after { display: none; }
.site-nav .sub a[aria-current="page"] { background: var(--yellow-100); }
@media (max-width: 920px) {
  .site-nav li.has-sub { flex-wrap: wrap; }
  .site-nav li.has-sub > a { flex: 1; padding-right: 12px; }
  .site-nav li.has-sub > a::before { display: none; }
  .site-nav .sub-toggle { display: grid; place-items: center; width: 48px; align-self: stretch; background: none; border: 0; border-bottom: 1px solid var(--line-2); color: var(--ink); cursor: pointer; }
  .site-nav .sub-toggle svg { width: 20px; height: 20px; transition: transform .2s ease; }
  .site-nav .sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .site-nav .sub { position: static; width: 100%; min-width: 0; margin: 0; padding: 4px 0 6px 14px; border: 0; box-shadow: none; border-radius: 0; background: var(--bg-2); }
  .site-nav .sub::before { display: none; }
  .site-nav li.has-sub:hover > .sub, .site-nav li.has-sub:focus-within > .sub { display: none; }
  .site-nav li.has-sub.is-open > .sub { display: block; }
  .site-nav .sub a { font-size: .96rem; padding: 11px 12px; border-bottom: 1px solid var(--line-2); }
  .site-nav .sub li:last-child a { border-bottom: 0; }
}
