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

    :root {
      --bg: #0e0e0e;
      --bg2: #161616;
      --bg3: #1e1e1e;
      --border: rgba(255, 255, 255, .08);
      --text: #e8e8e8;
      --muted: rgba(255, 255, 255, .45);
      --accent: #f5a623;
      --accent2: #fff;
      --radius: 10px;
      --radius-lg: 16px;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img {
      max-width: 100%;
      display: block
    }

    .wrap {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 24px
    }

    .wrap-sm {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 24px
    }

    /* ── Nav ── */
    nav {
      padding: 20px 0;
      border-bottom: 1px solid var(--border)
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px
    }

    .nav-logo {
      font-weight: 800;
      font-size: 15px;
      letter-spacing: -.02em;
      color: #fff
    }

    .nav-logo span {
      color: var(--accent)
    }

    .nav-cta {
      padding: 9px 20px;
      background: var(--accent);
      color: #000;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 13px;
      transition: opacity .15s;
      white-space: nowrap
    }

    .nav-cta:hover {
      opacity: .85
    }

    /* ── Hero ── */
    .hero {
      padding: 80px 0 64px
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 24px
    }

    .hero-tag-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.04em;
      color: #fff;
      margin-bottom: 20px;
      max-width: 640px
    }

    .hero h1 em {
      font-style: italic;
      color: var(--accent)
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 480px;
      margin-bottom: 40px;
      line-height: 1.7
    }

    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 56px
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--accent);
      color: #000;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 15px;
      transition: opacity .15s
    }

    .btn-primary:hover {
      opacity: .85
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 15px;
      transition: border-color .15s
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, .3)
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      padding-top: 40px;
      border-top: 1px solid var(--border)
    }

    .hero-stat strong {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.04em;
      line-height: 1
    }

    .hero-stat span {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: 4px;
      display: block
    }

    /* ── Section ── */
    .section {
      padding: 72px 0
    }

    .section-alt {
      background: var(--bg2)
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--accent);
      margin-bottom: 16px
    }

    .section-title {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -.03em;
      margin-bottom: 12px
    }

    .section-title em {
      font-style: italic;
      color: var(--accent)
    }

    .section-body {
      font-size: 1rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.75
    }

    /* ── Services ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
      margin-top: 48px
    }

    .service-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: border-color .2s
    }

    .service-card:hover {
      border-color: rgba(255, 255, 255, .18)
    }

    .service-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 16px
    }

    .service-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: -.02em
    }

    .service-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7
    }

    /* ── About ── */
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center
    }

    .about-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--bg3)
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .about-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px
    }

    .badge {
      padding: 6px 14px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text)
    }

    /* ── Steps ── */
    .steps {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 0
    }

    .step {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border)
    }

    .step:last-child {
      border-bottom: none
    }

    .step-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: .1em;
      min-width: 28px;
      padding-top: 3px;
      flex-shrink: 0
    }

    .step h3 {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px
    }

    .step p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7
    }

    /* ── Why ── */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      margin-top: 48px
    }

    .why-quote {
      font-size: 1.25rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.5;
      font-style: italic;
      border-left: 3px solid var(--accent);
      padding-left: 20px;
      margin: 24px 0
    }

    .why-text p {
      font-size: 14.5px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 16px
    }

    .why-points {
      display: flex;
      flex-direction: column;
      gap: 20px
    }

    .why-point {
      display: flex;
      gap: 16px;
      align-items: flex-start
    }

    .why-point-icon {
      width: 36px;
      height: 36px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .why-point h4 {
      font-size: .9rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 3px
    }

    .why-point p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6
    }

    /* ── Testimonials ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
      margin-top: 48px
    }

    .testimonial {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px
    }

    .testimonial-text {
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 16px;
      font-style: italic
    }

    .testimonial-author {
      font-size: 12px;
      font-weight: 700;
      color: var(--muted)
    }

    .testimonial-author strong {
      color: #fff;
      display: block;
      margin-bottom: 2px
    }

    /* ── Equipment ── */
    .equipment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
      margin-top: 48px
    }

    .eq-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px
    }

    .eq-card-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--accent);
      margin-bottom: 12px
    }

    .eq-card h3 {
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px
    }

    .eq-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6
    }

    /* ── Coverage ── */
    .coverage-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center
    }

    .coverage-regions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px
    }

    .region-chip {
      padding: 7px 16px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text)
    }

    .coverage-note {
      margin-top: 20px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7
    }

    /* ── CTA band ── */
    .cta-band {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 72px 0;
      text-align: center
    }

    .cta-band h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.04em;
      margin-bottom: 12px
    }

    .cta-band h2 em {
      font-style: italic;
      color: var(--accent)
    }

    .cta-band>p {
      color: var(--muted);
      max-width: 440px;
      margin: 0 auto 36px;
      font-size: .95rem
    }

    .cta-form {
      display: flex;
      gap: 10px;
      max-width: 420px;
      margin: 0 auto;
      flex-wrap: wrap
    }

    .cta-form input {
      flex: 1;
      min-width: 200px;
      padding: 14px 18px;
      background: var(--bg3);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      color: #fff;
      font-size: 15px;
      font-family: inherit;
      outline: none;
      transition: border-color .15s
    }

    .cta-form input:focus {
      border-color: rgba(255, 255, 255, .3)
    }

    .cta-form input::placeholder {
      color: var(--muted)
    }

    .cta-form button {
      padding: 14px 24px;
      background: var(--accent);
      color: #000;
      border: none;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      font-family: inherit;
      transition: opacity .15s;
      white-space: nowrap
    }

    .cta-form button:hover {
      opacity: .85
    }

    .cta-note {
      margin-top: 14px;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.8
    }

    /* ── Footer ── */
    footer {
      padding: 36px 0;
      border-top: 1px solid var(--border)
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px
    }

    .footer-logo {
      font-weight: 800;
      font-size: 14px;
      color: #fff
    }

    .footer-logo span {
      color: var(--accent)
    }

    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap
    }

    .footer-links a {
      font-size: 12px;
      color: var(--muted);
      transition: color .15s
    }

    .footer-links a:hover {
      color: #fff
    }

    .footer-copy {
      font-size: 12px;
      color: var(--muted);
      margin-top: 12px
    }

    /* ── Responsive ── */
    @media(max-width:720px) {

      .about-inner,
      .why-grid,
      .coverage-inner {
        grid-template-columns: 1fr
      }

      .about-img {
        display: none
      }

      .hero-stats {
        gap: 24px
      }

      .hero h1 {
        font-size: 2rem
      }

      .hero {
        padding: 52px 0 40px
      }

      .section {
        padding: 48px 0
      }

      .cta-band {
        padding: 48px 0
      }

      .cta-form {
        flex-direction: column
      }

      .cta-form input,
      .cta-form button {
        width: 100%
      }

      .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
      }

      .btn-primary,
      .btn-ghost {
        width: 100%;
        justify-content: center
      }

      .footer-inner {
        align-items: flex-start
      }
    }

    @media(max-width:480px) {
      .hero-stats {
        flex-direction: column;
        gap: 20px
      }

      .services-grid,
      .testimonials-grid,
      .equipment-grid {
        grid-template-columns: 1fr
      }
    }

/* Extracted inline styles */
.u-style-01 { display:flex;align-items:center;gap:12px; }
.u-style-02 { font-size:13px;font-weight:700;color:var(--accent);display:inline-flex;align-items:center;gap:6px; }
.u-style-03 { border-radius:var(--radius-lg);overflow:hidden;line-height:0;margin-top:0; }
.u-style-04 { width:100%;height:clamp(200px,40vw,440px);object-fit:cover;object-position:center;display:block; }
.u-style-05 { color:var(--muted);font-size:.95rem;line-height:1.8;margin-top:16px; }
.u-style-06 { color:var(--muted);font-size:.95rem;line-height:1.8;margin-top:12px; }
.u-style-07 { background:#111;border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06);padding:56px 0;text-align:center; }
.u-style-08 { font-size:clamp(1.3rem,3vw,2rem);font-weight:800;color:#fff;letter-spacing:-.03em;line-height:1.25;margin-bottom:16px; }
.u-style-09 { font-size:.95rem;color:rgba(255,255,255,.4);max-width:480px;margin:0 auto;line-height:1.7; }
.u-style-10 { font-size:12px;font-weight:400;font-style:normal;color:rgba(255,255,255,.3); }
.u-style-11 { margin-top:12px; }
.u-style-12 { background:var(--bg3);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px; }
.u-style-13 { font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--accent);margin-bottom:20px; }
.u-style-14 { display:flex;flex-direction:column;gap:12px; }
.u-style-15 { display:flex;justify-content:space-between;font-size:14px; }
.u-style-16 { color:var(--muted); }
.u-style-17 { color:#fff;font-weight:600; }
.u-style-18 { margin-top:24px;padding-top:24px;border-top:1px solid var(--border);font-size:13px;color:var(--muted);line-height:1.7; }
.u-style-19 { display:none;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:18px 24px;max-width:420px;margin:16px auto 0;font-size:14px;color:#e8e8e8;line-height:1.6; }
.u-style-20 { color:var(--muted);font-size:13px; }
.u-style-21 { color:rgba(255,255,255,.4);text-decoration:underline; }
.u-style-22 { margin-bottom:10px; }
.u-style-23 { font-size:12px;color:rgba(255,255,255,.35);line-height:1.9; }
.u-style-24 { color:rgba(255,255,255,.35); }
.u-style-25 { display:none;position:fixed;bottom:0;left:0;right:0;background:#1a1a1a;border-top:1px solid rgba(255,255,255,.1);padding:16px 24px;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;z-index:999;font-size:13px;color:rgba(255,255,255,.55); }
.u-style-26 { color:#f5a623;text-decoration:underline; }
.u-style-27 { display:flex;gap:10px;flex-shrink:0; }
.u-style-28 { padding:8px 18px;background:transparent;border:1px solid rgba(255,255,255,.2);border-radius:8px;color:rgba(255,255,255,.55);font-size:13px;cursor:pointer;font-family:inherit; }
.u-style-29 { padding:8px 18px;background:#f5a623;border:none;border-radius:8px;color:#000;font-size:13px;font-weight:700;cursor:pointer;font-family:inherit; }

/* JS state helpers */
.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

#cookie-bar.is-visible {
  display: flex !important;
}

.hero-au {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: 96px 0 72px;
  overflow: hidden;
  background-image: url("/img/hero.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-au .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(14, 14, 14, 0.94) 0%,
      rgba(14, 14, 14, 0.82) 42%,
      rgba(14, 14, 14, 0.48) 72%,
      rgba(14, 14, 14, 0.32) 100%
    );
}

.hero-au .hero-content {
  position: relative;
  z-index: 2;
}

.hero-au .hero-sub {
  color: rgba(255, 255, 255, 0.72);
}

.hero-au .hero-stats {
  max-width: 760px;
}

@media (max-width: 720px) {
  .hero-au {
    min-height: calc(100svh - 64px);
    padding: 64px 0 48px;
    background-position: center top;
  }

  .hero-au .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(14, 14, 14, 0.88) 0%,
        rgba(14, 14, 14, 0.82) 48%,
        rgba(14, 14, 14, 0.92) 100%
      );
  }

  .hero-au .hero-tag {
    margin-bottom: 18px;
  }

  .hero-au h1 {
    max-width: 100%;
  }

  .hero-au .hero-sub {
    max-width: 100%;
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .hero-au {
    min-height: 100svh;
    padding: 56px 0 40px;
    background-position: center top;
  }

  .hero-au .hero-stats {
    padding-top: 28px;
  }
}
/* Wider hero content */
.hero-au .wrap,
.hero-au .hero-content {
  width: min(100% - 48px, 1180px);
}

.hero-au h1 {
  max-width: 860px;
}

.hero-au .hero-sub {
  max-width: 720px;
}

.hero-au .hero-cta-row {
  max-width: 820px;
}

.hero-au .hero-stats {
  max-width: 920px;
}
.services-au {
  position: relative;
  overflow: hidden;
  background-color: var(--bg2);
}

.services-au-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(
      180deg,
      rgba(22, 22, 22, 0.92) 0%,
      rgba(22, 22, 22, 0.88) 45%,
      rgba(22, 22, 22, 0.94) 100%
    ),
    url("/img/services-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.services-au-content {
  position: relative;
  z-index: 2;
}

.services-intro {
  margin-top: 14px;
  max-width: 760px;
}

.services-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-au .service-card {
  background: rgba(30, 30, 30, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 1024px) {
  .services-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .services-au-bg {
    background-position: center top;
    opacity: 0.32;
  }

  .services-grid-four {
    grid-template-columns: 1fr;
  }

  .services-intro {
    max-width: 100%;
  }
}
/*  */
.why-au {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
}

.why-au-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(
      90deg,
      rgba(14, 14, 14, 0.74) 0%,
      rgba(14, 14, 14, 0.56) 46%,
      rgba(14, 14, 14, 0.36) 100%
    ),
    url("/img/cctv-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.why-au-content {
  position: relative;
  z-index: 2;
}

.why-impact {
  max-width: 880px;
  margin-bottom: 64px;
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(14, 14, 14, 0.46);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.why-impact-kicker {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.why-impact h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #fff;
}

.why-impact h2 em {
  font-style: italic;
  color: var(--accent);
}

.why-impact p:last-child {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.why-au-grid {
  align-items: stretch;
}

.why-au .why-quote {
  background: rgba(255, 255, 255, 0.055);
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  padding: 20px 22px;
  margin: 24px 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
  font-style: normal;
}

.why-au .why-text p {
  color: rgba(255, 255, 255, 0.66);
}

.why-au .why-point {
  background: rgba(30, 30, 30, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 14px;
  padding: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 720px) {
  .why-au-bg {
    background-image:
      linear-gradient(
        180deg,
        rgba(14, 14, 14, 0.66) 0%,
        rgba(14, 14, 14, 0.58) 48%,
        rgba(14, 14, 14, 0.72) 100%
      ),
      url("/img/cctv-bg.webp");
    background-position: center top;
  }

  .why-impact {
    margin-bottom: 42px;
    padding: 26px 22px;
    background: rgba(14, 14, 14, 0.52);
  }

  .why-impact h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .why-impact p:last-child {
    font-size: 0.98rem;
  }

  .why-au .why-quote {
    padding: 18px;
    font-size: 1rem;
  }

  .why-au .why-point {
    padding: 16px;
    background: rgba(30, 30, 30, 0.62);
  }
}
.testimonials-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .testimonials-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .testimonials-grid-four {
    grid-template-columns: 1fr;
  }
}
.equipment-au {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
}

.equipment-au-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(
      90deg,
      rgba(14, 14, 14, 0.78) 0%,
      rgba(14, 14, 14, 0.58) 48%,
      rgba(14, 14, 14, 0.42) 100%
    ),
    url("/img/equipment-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.equipment-au-content {
  position: relative;
  z-index: 2;
}

.equipment-au-intro {
  max-width: 780px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.equipment-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 880px;
}

.equipment-highlight {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius-lg);
  background: rgba(30, 30, 30, 0.58);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.equipment-highlight strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.equipment-highlight span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.equipment-grid-au {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.equipment-au .eq-card {
  background: rgba(30, 30, 30, 0.68);
  border-color: rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.eq-card-live {
  position: relative;
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.eq-card-live.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.eq-card-live::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(245, 166, 35, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.eq-card-live:hover,
.eq-card-live:focus {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.36);
  background: rgba(34, 34, 34, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  outline: none;
}

.eq-card-live:hover::before,
.eq-card-live:focus::before {
  opacity: 1;
}

.eq-card-live:nth-child(1) {
  transition-delay: 0.04s;
}

.eq-card-live:nth-child(2) {
  transition-delay: 0.08s;
}

.eq-card-live:nth-child(3) {
  transition-delay: 0.12s;
}

.eq-card-live:nth-child(4) {
  transition-delay: 0.16s;
}

.eq-card-live:nth-child(5) {
  transition-delay: 0.20s;
}

.eq-card-live:nth-child(6) {
  transition-delay: 0.24s;
}

@media (max-width: 1024px) {
  .equipment-grid-au {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .equipment-au-bg {
    background-image:
      linear-gradient(
        180deg,
        rgba(14, 14, 14, 0.72) 0%,
        rgba(14, 14, 14, 0.62) 50%,
        rgba(14, 14, 14, 0.78) 100%
      ),
      url("/img/equipment-bg.webp");
    background-position: center top;
  }

  .equipment-highlights,
  .equipment-grid-au {
    grid-template-columns: 1fr;
  }

  .equipment-au-intro {
    max-width: 100%;
  }

  .eq-card-live:hover,
  .eq-card-live:focus {
    transform: translateY(-3px);
  }
}
.coverage-au .coverage-note-main {
  max-width: 620px;
}

.coverage-card {
  background: rgba(30, 30, 30, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.coverage-card-label {
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.coverage-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coverage-hour-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.coverage-hour-row span {
  color: var(--muted);
}

.coverage-hour-row strong {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.coverage-hour-row .is-muted {
  color: var(--muted);
}

.coverage-card-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.coverage-direct {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}

.coverage-direct a {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.cta-au {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background-color: var(--bg2);
  text-align: left;
}

.cta-au-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(
      90deg,
      rgba(22, 22, 22, 0.78) 0%,
      rgba(22, 22, 22, 0.62) 48%,
      rgba(22, 22, 22, 0.44) 100%
    ),
    url("/img/contact-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.cta-au-content {
  position: relative;
  z-index: 2;
}

.cta-au-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.cta-au h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #fff;
}

.cta-au h2 em {
  font-style: italic;
  color: var(--accent);
}

.cta-au-header p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.75;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
}

.contact-choice-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(30, 30, 30, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-choice-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-choice-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.25;
  color: #fff;
}

.contact-choice-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.contact-field span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.contact-field input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(14, 14, 14, 0.78);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-field input:focus {
  border-color: rgba(245, 166, 35, 0.55);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.contact-field input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact-choice-card button {
  width: 100%;
  padding: 14px 20px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contact-choice-card button:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.contact-success {
  max-width: 920px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(245, 166, 35, 0.26);
  border-radius: var(--radius-lg);
  background: rgba(245, 166, 35, 0.1);
  color: #fff;
  line-height: 1.65;
}

.contact-success strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.contact-success span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.cta-au .cta-note {
  max-width: 920px;
  margin: 18px 0 0;
  text-align: left;
}

.cta-au .cta-note a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: underline;
}

.request-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.request-loader[hidden] {
  display: none;
}

.request-loader-card {
  width: min(100%, 420px);
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: #1a1a1a;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.request-spinner {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: requestSpin 0.8s linear infinite;
}

.request-loader-card h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.1rem;
}

.request-loader-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes requestSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .cta-au {
    padding: 58px 0;
  }

  .cta-au-bg {
    background-image:
      linear-gradient(
        180deg,
        rgba(22, 22, 22, 0.76) 0%,
        rgba(22, 22, 22, 0.68) 52%,
        rgba(22, 22, 22, 0.82) 100%
      ),
      url("/img/contact-bg.webp");
    background-position: center top;
  }

  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .contact-choice-card {
    padding: 22px;
  }

  .coverage-card {
    padding: 24px;
  }

  .coverage-hour-row {
    font-size: 13px;
  }
}
.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 166, 35, 0.08), transparent 32%),
    linear-gradient(180deg, #121212 0%, #0e0e0e 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-logo span {
  color: var(--accent);
}

.footer-description {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.54);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
}

.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.18s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-abn {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-column h3 {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-service-list span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  max-width: 560px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.36);
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 42px 0 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-service-list span {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.footer-service-list span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
  transform: scale(0.8);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.footer-service-list span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(245, 166, 35, 0.16) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.42s ease;
  pointer-events: none;
}

.footer-service-list span:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(245, 166, 35, 0.34);
  background: rgba(245, 166, 35, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.footer-service-list span:hover::before {
  opacity: 1;
  transform: scale(1.15);
}

.footer-service-list span:hover::after {
  transform: translateX(120%);
}

@media (max-width: 620px) {
  .footer-service-list span:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-service-list span,
  .footer-service-list span::before,
  .footer-service-list span::after {
    transition: none;
  }

  .footer-service-list span:hover {
    transform: none;
  }
}
.cookie-camera-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 166, 35, 0.12), transparent 34%),
    rgba(20, 20, 20, 0.94);
  color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.cookie-camera-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-camera-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.22);
  flex-shrink: 0;
}

.cookie-camera-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.cookie-camera-text {
  min-width: 0;
}

.cookie-camera-text strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
}

.cookie-camera-text span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-camera-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-camera-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-btn {
  padding: 9px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
}

.cookie-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.cookie-btn-main {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #000;
}

.cookie-btn-main:hover {
  opacity: 0.88;
}

.cookie-camera-close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.62);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.cookie-camera-close:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  transform: rotate(90deg);
}

@media (max-width: 720px) {
  .cookie-camera-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 15px;
  }

  .cookie-camera-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-camera-close {
    align-self: start;
  }

  .cookie-camera-text span {
    font-size: 12.5px;
  }
}

@media (max-width: 420px) {
  .cookie-camera-icon {
    width: 40px;
    height: 40px;
  }

  .cookie-camera-icon img {
    width: 24px;
    height: 24px;
  }

  .cookie-camera-banner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-camera-banner,
  .cookie-btn,
  .cookie-camera-close {
    transition: none;
  }

  .cookie-btn:hover,
  .cookie-camera-close:hover {
    transform: none;
  }
}