@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:    #0a1628;
    --navy2:   #0e1f3d;
    --blue:    #1a3a6b;
    --yellow:  #f5c800;
    --amber:   #d4a800;
    --white:   #ffffff;
    --offwhite:#f4f6fa;
    --mid:     #4a5568;
    --light:   #718096;
    --rule:    rgba(255,255,255,0.1);
    --max:     1100px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--navy);
    font-size: 16px;
    line-height: 1.6;
  }

  /* ── UTILITY ── */
  .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
  .tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--yellow); margin-bottom: 12px;
  }
  .rule-y { width: 40px; height: 4px; background: var(--yellow); margin-bottom: 20px; }

  /* ── HAZARD STRIPE ── */
  .hazard-stripe {
    height: 16px;
    background: repeating-linear-gradient(
      -45deg,
      var(--yellow) 0px, var(--yellow) 12px,
      var(--navy)   12px, var(--navy)   24px
    );
  }

  /* ── NAV ── */
  nav {
    background: var(--navy);
    border-bottom: 3px solid var(--yellow);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    position: sticky; top: 0; z-index: 100;
  }
  .nav-brand {
    display: flex; align-items: center; gap: 14px;
  }
  .nav-logo {
    height: 42px; width: auto; display: block;
  }
  .nav-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--white); text-decoration: none;
  }
  .nav-name span { color: var(--yellow); }
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--yellow); color: var(--navy);
    padding: 10px 22px; text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--amber); }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    padding: 72px 24px 64px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(26,58,107,0.6) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-certbadge {
    display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap;
  }
  .cert {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 5px 12px;
    border: 2px solid var(--yellow); color: var(--yellow);
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 900; text-transform: uppercase;
    color: var(--white); line-height: 1.0;
    letter-spacing: 0.01em; margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: normal; color: var(--yellow);
    display: block;
  }
  .hero-sub {
    font-size: clamp(14px, 2.5vw, 17px);
    color: rgba(255,255,255,0.65);
    line-height: 1.65; margin-bottom: 32px;
    max-width: 480px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--yellow); color: var(--navy);
    padding: 14px 28px; text-decoration: none;
    transition: background 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--amber); }
  .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 12px 26px; text-decoration: none;
    transition: border-color 0.2s; display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
  .hero-img-wrap {
    position: relative;
  }
  .hero-img-wrap img {
    width: 100%; height: auto;
    display: block; border-radius: 2px;
    border: 3px solid rgba(245,200,0,0.25);
    background: #ffffff;
    padding: 20px;
  }
  .hero-img-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--yellow); color: var(--navy);
    padding: 14px 18px; text-align: center;
  }
  .hero-img-badge strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 900; display: block; line-height: 1;
  }
  .hero-img-badge span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; opacity: 0.7;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--yellow);
    padding: 0;
  }
  .stats-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: repeat(4,1fr);
  }
  .stat {
    padding: 20px 16px; text-align: center;
    border-right: 1px solid rgba(0,0,0,0.1);
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900; color: var(--navy);
    line-height: 1; display: block; margin-bottom: 3px;
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(10,22,40,0.65);
  }

  /* ── USP SECTION ── */
  .usp {
    background: var(--offwhite);
    padding: 72px 24px;
  }
  .usp-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 3px; margin-top: 36px;
  }
  .usp-card {
    background: var(--white);
    padding: 32px 28px;
    border-top: 4px solid var(--yellow);
  }
  .usp-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px; font-weight: 900; color: var(--yellow);
    line-height: 1; margin-bottom: 8px; opacity: 0.35;
  }
  .usp-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; color: var(--navy);
    margin-bottom: 10px; line-height: 1.2;
  }
  .usp-desc {
    font-size: 14px; color: var(--mid); line-height: 1.65;
  }

  /* ── PRODUCT SHOWCASE ── */
  .products {
    background: var(--navy);
    padding: 72px 24px;
  }
  .products h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800; text-transform: uppercase;
    color: var(--white); margin-bottom: 8px; line-height: 1.05;
  }
  .product-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 16px; margin-top: 40px;
  }
  .product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
  }
  .product-card img {
    width: 100%; aspect-ratio: 4/3;
    object-fit: contain; display: block;
    background: #ffffff;
    padding: 20px;
  }
  .product-card-body { padding: 20px; }
  .product-card-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--yellow);
    margin-bottom: 6px; display: block;
  }
  .product-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px; font-weight: 700; text-transform: uppercase;
    color: var(--white); line-height: 1.2;
  }

  /* ── WHO IS THIS FOR ── */
  .sectors {
    background: var(--white);
    padding: 72px 24px;
  }
  .sectors h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800; text-transform: uppercase;
    color: var(--navy); line-height: 1.05;
  }
  .sectors-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; margin-top: 40px; align-items: start;
  }
  .sector-list { list-style: none; }
  .sector-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--offwhite);
    font-size: 15px; color: var(--mid);
  }
  .sector-list li:first-child { border-top: 1px solid var(--offwhite); }
  .sector-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    background: var(--yellow); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .sector-icon svg { width: 16px; height: 16px; }
  .sector-text strong { display: block; color: var(--navy); font-weight: 600; font-size: 15px; }
  .sector-text span { font-size: 13px; color: var(--light); }

  .problem-box {
    background: var(--navy);
    padding: 36px;
  }
  .problem-box h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 700; text-transform: uppercase;
    color: var(--yellow); margin-bottom: 20px;
  }
  .problem-item {
    display: flex; gap: 12px; margin-bottom: 16px;
    font-size: 14px; color: rgba(255,255,255,0.7);
    align-items: flex-start; line-height: 1.55;
  }
  .problem-item::before {
    content: '→';
    color: var(--yellow); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
  }

  /* ── CERTIFICATIONS ── */
  .certs {
    background: var(--offwhite);
    padding: 64px 24px;
  }
  .certs-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 3px; margin-top: 36px;
  }
  .cert-card {
    background: var(--navy);
    padding: 32px 24px; text-align: center;
  }
  .cert-badge-large {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900; color: var(--yellow);
    letter-spacing: 0.05em; display: block; margin-bottom: 10px;
  }
  .cert-desc {
    font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55;
  }

  /* ── WHY SPILLRITE ── */
  .why {
    background: var(--white);
    padding: 72px 24px;
  }
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; margin-top: 40px;
  }
  .why h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800; text-transform: uppercase;
    color: var(--navy); line-height: 1.05;
  }
  .why-points { margin-top: 28px; }
  .why-point {
    display: flex; gap: 16px; margin-bottom: 22px;
    align-items: flex-start;
  }
  .why-point-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--yellow); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .why-point-icon svg { width: 18px; height: 18px; }
  .why-point-text strong {
    display: block; font-weight: 600;
    color: var(--navy); font-size: 15px; margin-bottom: 3px;
  }
  .why-point-text span { font-size: 14px; color: var(--mid); line-height: 1.55; }
  .why-img {
    width: 100%; height: auto; display: block;
    border-radius: 2px; border: 3px solid var(--offwhite); background: #ffffff;
  }

  /* ── GEOGRAPHIC MARKETS ── */
  .markets {
    background: var(--navy2);
    padding: 48px 24px;
  }
  .markets-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; flex-wrap: wrap;
    align-items: center; gap: 32px;
  }
  .markets h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 700; text-transform: uppercase;
    color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
    flex-shrink: 0;
  }
  .market-flags { display: flex; gap: 8px; flex-wrap: wrap; }
  .market-flag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--navy);
    background: var(--yellow); padding: 6px 16px;
  }

  /* ── CUSTOM OPTION ── */
  .custom {
    background: var(--yellow);
    padding: 64px 24px; text-align: center;
  }
  .custom h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900; text-transform: uppercase;
    color: var(--navy); line-height: 1.05;
    margin-bottom: 16px;
  }
  .custom p {
    font-size: 17px; color: rgba(10,22,40,0.7);
    max-width: 580px; margin: 0 auto 32px;
    line-height: 1.65;
  }
  .btn-dark {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--navy); color: var(--white);
    padding: 14px 32px; text-decoration: none;
    display: inline-block; transition: background 0.2s;
  }
  .btn-dark:hover { background: var(--blue); }

  /* ── CONTACT ── */
  .contact {
    background: var(--navy);
    padding: 72px 24px;
  }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
  }
  .contact h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800; text-transform: uppercase;
    color: var(--white); line-height: 1.05;
    margin-bottom: 12px;
  }
  .contact-intro {
    font-size: 15px; color: rgba(255,255,255,0.55);
    line-height: 1.65; margin-bottom: 32px;
  }
  .contact-item {
    display: flex; gap: 16px; align-items: center;
    padding: 14px 0; border-bottom: 1px solid var(--rule);
  }
  .contact-item-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--yellow); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .contact-item-icon svg { width: 18px; height: 18px; }
  .contact-item-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    display: block; margin-bottom: 2px;
  }
  .contact-item a, .contact-item-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 600; color: var(--white);
    text-decoration: none; letter-spacing: 0.02em;
  }
  .contact-item a:hover { color: var(--yellow); }
  .sites-grid { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; }
  .site-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--rule);
    text-decoration: none; transition: border-color 0.2s;
  }
  .site-link:hover { border-color: rgba(245,200,0,0.4); }
  .site-link-flag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--navy);
    background: var(--yellow); padding: 3px 8px; flex-shrink: 0;
  }
  .site-link-url {
    font-size: 13px; color: rgba(255,255,255,0.5);
  }

  /* ── FOOTER ── */
  footer {
    background: #050d1a;
    padding: 24px;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    margin-bottom: 8px;
  }
  .footer-logo span { color: var(--yellow); }
  footer p { font-size: 11px; color: rgba(255,255,255,0.2); }
  .footer-links {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 6px 16px;
    margin: 8px 0;
  }
  .footer-links a {
    font-size: 11px; color: rgba(255,255,255,0.35);
    text-decoration: none;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.7); }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-img-wrap { display: none; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .usp-grid { grid-template-columns: 1fr 1fr; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .certs-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .usp-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    nav { padding: 0 16px; }
  }

  /* ── NAV DROPDOWN ── */
  .nav-links { display: flex; align-items: stretch; }
  .nav-item { position: relative; display: flex; align-items: center; }
  .nav-item > a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.75);
    text-decoration: none; padding: 0 18px;
    display: flex; align-items: center; gap: 6px;
    height: 100%; transition: color 0.2s; white-space: nowrap;
  }
  .nav-item > a:hover { color: var(--yellow); }
  .nav-arrow { font-size: 9px; opacity: 0.55; transition: transform 0.2s; }
  .nav-item:hover .nav-arrow { transform: rotate(180deg); }
  .nav-dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--navy); border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--yellow);
    min-width: 180px; z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-item:hover .nav-dropdown { display: block; }
  .nav-dropdown a {
    display: block; font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.65);
    text-decoration: none; padding: 11px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s, color 0.15s; white-space: nowrap;
  }
  .nav-dropdown a:last-child { border-bottom: none; }
  .nav-dropdown a:hover { background: rgba(245,200,0,0.08); color: var(--yellow); }
  @media (max-width: 700px) { .nav-links { display: none; } }

  /* ── CLICKABLE PRODUCT CARDS ── */
  a.product-card {
    text-decoration: none; display: block;
    transition: border-color 0.2s, transform 0.2s;
  }
  a.product-card:hover {
    border-color: rgba(245,200,0,0.5);
    transform: translateY(-3px);
  }
  .product-card-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--yellow);
    margin-top: 12px; display: inline-block;
  }

  /* ── BROWSE-ALL CTA ── */
  .browse-cta { text-align: center; margin-top: 44px; }
  .btn-browse {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--yellow); color: var(--navy);
    padding: 16px 36px; text-decoration: none;
    display: inline-block; transition: background 0.2s;
  }
  .btn-browse:hover { background: var(--amber); }

  /* ── PRODUCTS / RANGE PAGE ── */
  .range-head {
    background: var(--navy);
    padding: 64px 24px 56px;
    position: relative; overflow: hidden;
  }
  .range-head::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 40%, rgba(26,58,107,0.55) 0%, transparent 70%);
    pointer-events: none;
  }
  .range-head-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
  .range-head h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 5.5vw, 54px); font-weight: 900;
    text-transform: uppercase; color: var(--white);
    line-height: 1.02; margin-bottom: 16px;
  }
  .range-head h1 em { font-style: normal; color: var(--yellow); }
  .range-head p {
    font-size: clamp(14px, 2.4vw, 17px); color: rgba(255,255,255,0.6);
    line-height: 1.65; max-width: 600px;
  }

  .filter-bar {
    background: var(--navy2);
    border-top: 1px solid var(--rule);
    border-bottom: 3px solid var(--yellow);
    padding: 16px 24px;
    position: sticky; top: 60px; z-index: 50;
  }
  .filter-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .filter-chip {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--rule); cursor: pointer;
    padding: 9px 18px; transition: all 0.15s;
  }
  .filter-chip:hover { border-color: rgba(245,200,0,0.4); color: var(--white); }
  .filter-chip.active { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }

  .range-section { background: var(--offwhite); padding: 56px 24px 72px; }
  .range-grid {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .range-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    display: flex; flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .range-card:hover {
    border-color: rgba(245,200,0,0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10,22,40,0.10);
  }
  .range-card-img {
    width: 100%; aspect-ratio: 4/3; object-fit: contain;
    background: var(--white); padding: 24px; display: block;
    border-bottom: 1px solid var(--offwhite);
  }
  .range-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
  .range-card-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--amber); margin-bottom: 6px;
  }
  .range-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px; font-weight: 700; text-transform: uppercase;
    color: var(--navy); line-height: 1.15; margin-bottom: 12px;
  }
  .range-spec { list-style: none; margin: 0 0 18px; }
  .range-spec li {
    font-size: 13px; color: var(--mid); padding: 5px 0;
    display: flex; gap: 8px; align-items: flex-start;
    border-bottom: 1px solid var(--offwhite);
  }
  .range-spec li::before { content: '✓'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
  .range-card-foot { margin-top: auto; }
  .range-card-quote {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--navy);
    background: var(--yellow); padding: 12px 18px;
    text-decoration: none; display: block; text-align: center;
    transition: background 0.2s;
  }
  .range-card-quote:hover { background: var(--amber); }

  @media (max-width: 860px) { .range-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) {
    .range-grid { grid-template-columns: 1fr; }
    .filter-bar { position: static; }
  }

  /* ── CATEGORY (ENQUIRY CATALOGUE) CARDS ── */
  .cat-grid {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .cat-card {
    background: var(--white); border: 1px solid #e2e8f0;
    padding: 28px 26px; display: flex; flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .cat-card:hover {
    border-color: rgba(245,200,0,0.6); transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10,22,40,0.10);
  }
  .cat-icon {
    width: 48px; height: 48px; background: var(--yellow); border-radius: 2px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  }
  .cat-icon svg { width: 24px; height: 24px; }
  .cat-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700; text-transform: uppercase;
    color: var(--navy); line-height: 1.15; margin-bottom: 12px;
  }
  .cat-desc { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 20px; }
  .cat-card-foot { margin-top: auto; }
  .cat-quote {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--navy); background: var(--yellow);
    padding: 11px 18px; text-decoration: none; display: inline-block;
    transition: background 0.2s;
  }
  .cat-quote:hover { background: var(--amber); }
  @media (max-width: 860px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

  /* ── QUOTE / ENQUIRY FORM ── */
  .quote-form { display: flex; flex-direction: column; gap: 16px; position: relative; }
  .qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .qf-field { display: flex; flex-direction: column; gap: 6px; }
  .qf-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
  }
  .qf-field input, .qf-field select, .qf-field textarea {
    font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--white);
    background: rgba(255,255,255,0.05); border: 1px solid var(--rule);
    padding: 12px 14px; border-radius: 2px; width: 100%;
    transition: border-color 0.2s;
  }
  .qf-field input::placeholder, .qf-field textarea::placeholder { color: rgba(255,255,255,0.3); }
  .qf-field input:focus, .qf-field select:focus, .qf-field textarea:focus {
    outline: none; border-color: var(--yellow);
  }
  .qf-field select option { background: var(--navy); color: var(--white); }
  .qf-field textarea { resize: vertical; min-height: 120px; }
  .qf-submit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; background: var(--yellow); color: var(--navy);
    border: none; padding: 16px 34px; cursor: pointer;
    transition: background 0.2s; align-self: flex-start;
  }
  .qf-submit:hover { background: var(--amber); }
  .qf-submit:disabled { opacity: 0.6; cursor: default; }
  .qf-hp { position: absolute; left: -9999px; top: 0; }
  .qf-msg { display: none; padding: 16px 18px; border-radius: 2px; font-size: 15px; line-height: 1.5; }
  .qf-msg.show { display: block; }
  .qf-msg.ok { background: rgba(245,200,0,0.12); border: 1px solid rgba(245,200,0,0.4); color: var(--yellow); }
  .qf-msg.err { background: rgba(226,75,74,0.14); border: 1px solid rgba(226,75,74,0.45); color: #ff9b9b; }
  @media (max-width: 560px) { .qf-row { grid-template-columns: 1fr; } }

  /* ── BREADCRUMB BAR ── */
  .crumb-bar { background: var(--navy2); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 11px 24px; }
  .crumb-inner { max-width: var(--max); margin: 0 auto; font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
  .crumb-inner a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
  .crumb-inner a:hover { color: var(--yellow); }
  .crumb-inner .sep { color: rgba(255,255,255,0.22); margin: 0 9px; }
  .crumb-inner .current { color: var(--yellow); }
  @media (max-width:560px){ .crumb-bar { padding: 10px 16px; } .crumb-inner { font-size: 11px; letter-spacing: 0.05em; } }
