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

  :root {
    --red: #DF1F23;
    --dark-grey: #4A4A4A;
    --mid-grey: #8C8C8C;
    --deep-red: #2E0201;
    --bg: #0A0A0A;
    --bg-card: #141414;
    --white: #F0F0F0;
    --accent-electrical: #F5A623;
    --accent-security: #5AE4AA;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
  }

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

  /* Nav */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1.5rem;
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1a1a1a;
  }

  .logo img { height: 40px; display: block; }

  .nav-contact {
    font-size: 0.78rem;
    color: var(--mid-grey);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
  }

  .nav-contact a {
    color: var(--mid-grey);
    transition: color 0.2s;
  }

  .nav-contact a:hover { color: var(--white); }

    .nav-sep { color: #3a3a3a; }

  .nav-right { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }

  .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    transition: color 0.2s;
  }

  .nav-link:hover { color: var(--red); }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 5px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: #c41a1d; transform: translateY(-1px); }
  .nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

  @media (max-width: 820px) {
    .nav-contact { display: none; }
    .nav-right { flex-wrap: wrap; justify-content: flex-end; row-gap: 0.6rem; }
  }

  .btn {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    background: var(--red);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn:hover { background: #c41a1d; }

  /* Hero */
  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90vh;
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 55%, var(--deep-red) 85%, var(--bg) 100%);
  }

  .hero-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text .hero-cta {
    justify-content: flex-start;
  }

  .hero-subline {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
    color: var(--mid-grey);
    line-height: 1.7;
    max-width: 560px;
  }

  .hero-feature-img {
    justify-self: center;
    height: clamp(200px, 22vw, 340px);
    width: auto;
    max-width: 100%;
  }

  .hero-arc {
    width: 100%;
    margin: 2.5rem 0 2rem;
    line-height: 0;
    overflow: visible;
  }

  .hero-arc svg {
    display: block;
    overflow: visible;
    margin-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero > p {
    font-size: 1.1rem;
    color: var(--mid-grey);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .hero-columns {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .hero-feature-img { display: none; }
    .hero-text { text-align: center; }
    .hero-text .hero-cta { justify-content: center; }
    .hero-desc { max-width: none; margin-left: auto; margin-right: auto; }
  }

  .services-arc {
    width: 100%;
    overflow: visible;
    margin-bottom: 2rem;
  }

  /* Section shared */
  section { padding: 5rem 5%; }

  .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    color: var(--mid-grey);
    margin-bottom: 3rem;
  }

  /* Services */
  .services { text-align: center; padding-left: 3%; padding-right: 3%; }

  .cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1520px;
    margin: 0 auto;
  }

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

  @media (max-width: 560px) {
    .cards { grid-template-columns: 1fr; max-width: 380px; }
  }

  .card {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.25s, transform 0.25s;
  }

  .card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }

  .card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--deep-red);
  }

  .card-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .card p {
    font-size: 0.875rem;
    color: var(--mid-grey);
    line-height: 1.5;
  }

  /* About */
  .about {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 5%;
  }

  .about .tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--red);
    margin-bottom: 1.5rem;
  }

  .about p {
    color: var(--mid-grey);
    font-size: 1rem;
  }

  /* Contact */
  .contact { text-align: center; }

  .contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.5rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
  }

  .contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .contact-item a {
    color: var(--white);
    transition: color 0.2s;
  }

  .contact-item a:hover { color: var(--red); }

  .contact-divider {
    width: 40px;
    height: 2px;
    background: var(--dark-grey);
    margin: 2rem auto;
  }

  .areas {
    font-size: 0.875rem;
    color: var(--mid-grey);
    letter-spacing: 0.08em;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 2.5rem 5%;
    border-top: 1px solid #1a1a1a;
    color: var(--mid-grey);
    font-size: 0.85rem;
  }

  footer span { color: var(--white); font-weight: 600; }

  /* ===== CTA buttons (hero) ===== */
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
  }

  .btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.9rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  }

  .btn-primary {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
  }

  .btn-primary:hover { background: #c41a1d; border-color: #c41a1d; transform: translateY(-2px); }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid #3a3a3a;
  }

  .btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

  .btn-lg svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ===== Sub-page layout (quote / support) ===== */
  .page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 5% 5rem;
  }

  .page-head { text-align: center; margin-bottom: 3rem; }

  .page-head h1 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .page-head p {
    color: var(--mid-grey);
    max-width: 620px;
    margin: 0 auto;
  }

  .page-head p a { color: var(--red); }
  .page-head p a:hover { text-decoration: underline; }

  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--mid-grey);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
  }
  .back-link:hover { color: var(--white); }
  .back-link svg { width: 14px; height: 14px; }

  /* ===== Forms ===== */
  .form-card {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 2.5rem;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .field { display: flex; flex-direction: column; }
  .field.full { grid-column: 1 / -1; }

  .field label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
  }

  .field label .req { color: var(--red); margin-left: 2px; }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 0.75rem 0.9rem;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .field textarea { min-height: 130px; resize: vertical; }

  .field input::placeholder,
  .field textarea::placeholder { color: #5a5a5a; }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(223, 31, 35, 0.15);
  }

  .field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238C8C8C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.2rem;
    cursor: pointer;
  }

  /* Services checkbox grid */
  .services-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    display: block;
  }
  .services-label .req { color: var(--red); margin-left: 2px; }

  .check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0.9rem;
  }

  .check-tile {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .check-tile:hover { border-color: #444; }

  .check-tile input {
    accent-color: var(--red);
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .check-tile:has(input:checked) {
    border-color: var(--red);
    background: rgba(223, 31, 35, 0.06);
  }

  .check-tile .ct-title { font-size: 0.9rem; font-weight: 600; color: var(--white); }
  .check-tile .ct-sub { font-size: 0.78rem; color: var(--mid-grey); margin-top: 2px; line-height: 1.4; }

  .form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .form-note { font-size: 0.8rem; color: var(--mid-grey); }

  .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-submit:hover { background: #c41a1d; transform: translateY(-2px); }

  .support-callout {
    background: rgba(223, 31, 35, 0.07);
    border: 1px solid rgba(223, 31, 35, 0.25);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
  }
  .support-callout a { color: var(--red); font-weight: 600; }

  @media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-card { padding: 1.5rem; }
  }

  /* ===== Form success / error states ===== */
  .success-panel { text-align: center; padding: 3.5rem 2.5rem; }

  .success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--deep-red);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
  }
  .success-icon svg { width: 30px; height: 30px; stroke: var(--red); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

  .success-panel h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
  .success-panel p { color: var(--mid-grey); max-width: 460px; margin: 0 auto 1.75rem; }

  .success-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

  .botcheck { display: none; }

  .form-error {
    display: none;
    background: rgba(223, 31, 35, 0.1);
    border: 1px solid rgba(223, 31, 35, 0.3);
    color: #ffb3b4;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 0.88rem;
  }

  /* ===== Locations page ===== */
  .area-group { margin-bottom: 3.5rem; }
  .area-group:last-of-type { margin-bottom: 0; }

  .area-group h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .area-group-intro {
    color: var(--mid-grey);
    max-width: 620px;
    margin: 0 auto 1.5rem;
    text-align: center;
  }

  .area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .area-card {
    box-sizing: border-box;
    flex: 0 0 calc((100% - 2rem) / 3);
    height: 4rem;
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
  }

  @media (max-width: 700px) {
    .area-card { flex-basis: calc((100% - 1rem) / 2); }
  }

  @media (max-width: 420px) {
    .area-card { flex-basis: 100%; }
  }

  .area-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
  }

  .area-card svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    flex: none;
    stroke: var(--red);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .locations-cta {
    text-align: center;
    max-width: 720px;
    margin: 5rem auto 0;
  }

  .locations-cta p {
    color: var(--mid-grey);
  }

  /* ===== Why Choose Us / Reviews ===== */
  .narrative {
    max-width: 720px;
    margin: 0 auto 3rem;
  }

  .narrative h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .narrative p {
    color: var(--mid-grey);
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: left;
  }

  .narrative p + p { margin-top: 1.1rem; }

  .narrative-tight { margin-bottom: 2.5rem; }

  .narrative a { color: var(--red); }
  .narrative a:hover { text-decoration: underline; }

  @media (max-width: 640px) {
    .narrative p { font-size: 0.9rem; }
  }

  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 0 4rem;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    transition: border-color 0.2s, transform 0.2s;
  }

  .badge:hover { border-color: var(--red); transform: translateY(-2px); }

  .badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  @media (max-width: 480px) {
    .badge {
      max-width: 100%;
      white-space: normal;
      text-align: center;
      border-radius: 12px;
    }
  }

  .content-block { text-align: center; margin-bottom: 5rem; }
  .content-block:last-of-type { margin-bottom: 0; }

  /* Case studies */
  .case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }

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

  .case-grid.single { grid-template-columns: minmax(0, 1fr); max-width: 480px; }

  .case-card {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: border-color 0.25s, transform 0.25s;
  }

  .case-card:hover { border-color: var(--red); transform: translateY(-4px); }

  .case-tag {
    align-self: flex-start;
    background: var(--deep-red);
    color: var(--red);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
  }

  .case-band {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: linear-gradient(135deg, var(--deep-red) 0%, #170202 100%);
    border: 1px solid #2a1010;
    border-left: 3px solid var(--red);
    border-radius: 6px;
    padding: 0.85rem 1.1rem;
  }

  .case-band-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(223, 31, 35, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .case-band-icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .case-band span:last-child {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
  }

  .case-card h3 {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .case-block h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 0.35rem;
  }

  .case-block p {
    font-size: 0.85rem;
    color: var(--mid-grey);
    line-height: 1.55;
  }

  /* Testimonial carousel */
  .carousel-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .carousel-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    color: var(--white);
  }

  .carousel-arrow:hover { border-color: var(--red); color: var(--red); }
  .carousel-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .carousel-viewport {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    min-width: 0;
  }

  .carousel-slot {
    flex: 1;
    min-width: 0;
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 2rem 1.75rem;
    text-align: left;
    opacity: 1;
    transition: opacity 0.4s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .carousel-slot.fading { opacity: 0; }

  .carousel-slot .quote-mark { width: 22px; height: 22px; fill: var(--red); opacity: 0.5; margin-bottom: 0.75rem; }

  .carousel-quote {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .carousel-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mid-grey);
  }

  .carousel-slot-b { display: none; }

  @media (min-width: 900px) {
    .carousel-slot-b { display: flex; }
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0 2.5rem;
  }

  .carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: #2a2a2a;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .carousel-dots button.active { background: var(--red); transform: scale(1.3); }

  @media (max-width: 640px) {
    .carousel-arrow { width: 32px; height: 32px; }
    .carousel-slot { padding: 1.5rem 1.25rem; }
  }

  /* Reviews wall */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.25rem;
    margin-bottom: 4rem;
  }

  .review-card {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.25s, transform 0.25s;
  }

  .review-card:hover { border-color: var(--red); transform: translateY(-3px); }

  .review-card .quote-mark { width: 20px; height: 20px; fill: var(--red); opacity: 0.5; }

  .review-card p {
    font-size: 0.87rem;
    color: var(--white);
    line-height: 1.55;
    flex: 1;
  }

  .review-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mid-grey);
  }

  /* ===== Service page hero (electrical.html and future service pages) ===== */
  .service-hero { margin-bottom: 4rem; }

  .eyebrow {
    display: block;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
  }

  .heading-accent {
    width: 64px;
    height: 4px;
    background: var(--accent-electrical);
    border-radius: 2px;
    margin: 1.15rem auto 1.5rem;
  }

  .promise-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    margin: 1.75rem 0 0;
  }

  .promise-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 500;
  }

  .promise-list svg {
    width: 15px;
    height: 15px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .page-head p.service-areas {
    margin-top: 2rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  /* ===== Split hero: text + feature image (electrical.html and future service pages) ===== */
  .hero-split {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4.5rem 5%;
    background:
      radial-gradient(ellipse 75% 85% at 26% 45%, rgba(245, 166, 35, 0.22) 0%, rgba(245, 166, 35, 0.09) 40%, transparent 72%),
      var(--bg);
  }

  .hero-split-text.page-head {
    text-align: left;
    margin-bottom: 0;
  }

  .hero-split-text.page-head p {
    margin: 0 0 1.5rem;
  }

  .hero-split-text .heading-accent { margin: 1.15rem 0 1.5rem; }
  .hero-split-text .promise-list { justify-content: flex-start; }
  .hero-split-text .hero-cta { justify-content: flex-start; }
  .hero-split-text.page-head p.service-areas { margin: 1.75rem 0 0; }

  .hero-split-img {
    justify-self: center;
    height: clamp(220px, 26vw, 360px);
    width: auto;
    max-width: 100%;
    mix-blend-mode: lighten;
    -webkit-mask-image: radial-gradient(50% 50% at 50% 55%, black 58%, transparent 92%);
    mask-image: radial-gradient(50% 50% at 50% 55%, black 58%, transparent 92%);
  }

  @media (max-width: 768px) {
    .hero-split {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 3rem 6% 2.5rem;
    }
    .hero-split-text.page-head { text-align: center; }
    .hero-split-text.page-head p { margin: 0 auto 1.5rem; }
    .hero-split-text .heading-accent { margin: 1.15rem auto 1.5rem; }
    .hero-split-text .promise-list { justify-content: center; }
    .hero-split-text .hero-cta { justify-content: center; }
    .hero-split-img { display: none; }
  }

  /* ===== Electrical service tiles ===== */
  .tile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    text-align: left;
  }

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

  @media (max-width: 560px) {
    .tile-grid { grid-template-columns: 1fr; }
  }

  .tile {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }

  .tile:hover {
    border-color: var(--accent-electrical);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -14px rgba(245, 166, 35, 0.35);
  }

  .tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
  }

  .tile-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-electrical);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .tile h3 { font-size: 1rem; margin-bottom: 0.5rem; }

  .tile p {
    font-size: 0.85rem;
    color: var(--mid-grey);
    line-height: 1.55;
    flex: 1;
  }

  .tile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 1rem;
  }

  .tile-link:hover { text-decoration: underline; }
  .tile-link svg { width: 14px; height: 14px; transition: transform 0.2s; flex-shrink: 0; }
  .tile-link:hover svg { transform: translateX(3px); }

  /* ===== What We Do (sector columns) ===== */
  .sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: left;
  }

  @media (max-width: 900px) {
    .sector-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  }

  .sector-col {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 1.75rem;
  }

  .sector-col h3 { font-size: 1.05rem; margin-bottom: 1rem; }

  .sector-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

  .sector-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.87rem;
    color: var(--mid-grey);
    line-height: 1.5;
  }

  .sector-col li svg {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  /* ===== Standards & Compliance ===== */
  .standards-panel {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    text-align: left;
  }

  @media (max-width: 700px) {
    .standards-panel { grid-template-columns: 1fr; padding: 1.5rem; }
  }

  .standards-panel h3 { font-size: 0.95rem; margin-bottom: 1rem; }

  .standards-panel ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

  .standards-panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.87rem;
    color: var(--mid-grey);
    line-height: 1.5;
  }

  .standards-panel li svg {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .standards-note {
    grid-column: 1 / -1;
    font-size: 0.82rem;
    color: var(--mid-grey);
    border-top: 1px solid #1f1f1f;
    padding-top: 1.25rem;
    margin-top: 0.25rem;
  }

  /* ===== How We Work (process steps) ===== */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    text-align: left;
  }

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

  @media (max-width: 560px) {
    .process-grid { grid-template-columns: 1fr; max-width: 380px; }
  }

  .process-step {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
  }

  .process-step .step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.75rem;
  }

  .process-step h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }

  .process-step p { font-size: 0.82rem; color: var(--mid-grey); line-height: 1.5; }

  /* ===== FAQ accordion ===== */
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-item {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
  }

  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::marker { content: ""; }

  .faq-item summary svg {
    width: 16px;
    height: 16px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .faq-item[open] summary svg { transform: rotate(180deg); }

  .faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--mid-grey);
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* ===== Pathway (interim) page ===== */
  .pathway-panel {
    max-width: 640px;
    margin: 2rem auto 0;
    text-align: center;
  }

  /* ===== Security page: image-led hero ===== */
  .hero-banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 640px;
    overflow: hidden;
  }

  .hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.82) 32%, rgba(10,10,10,0.4) 62%, rgba(10,10,10,0.08) 100%),
      linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 32%);
  }

  .hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 3rem 5% 3.5rem;
    max-width: 640px;
  }

  .hero-banner-content .back-link { color: #c9c9c9; margin-bottom: 1.5rem; }
  .hero-banner-content .back-link:hover { color: #fff; }

  .hero-banner-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
  }

  .hero-banner-content .heading-accent { margin: 1.15rem 0 1.5rem; }

  .hero-banner-content > p {
    color: #d6d6d6;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-banner-content .promise-list { justify-content: flex-start; margin-top: 1.5rem; }
  .hero-banner-content .hero-cta { justify-content: flex-start; }

  .hero-banner-content .service-areas {
    margin-top: 1.75rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: #c9c9c9;
  }

  @media (max-width: 900px) {
    .hero-banner { min-height: 560px; }
  }

  @media (max-width: 600px) {
    .hero-banner { min-height: 480px; }
    .hero-banner-content { padding: 2.25rem 6% 2.75rem; }
  }

  .heading-accent.accent-security { background: var(--accent-security); }

  /* ===== Approved partners strip ===== */
  .partners-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 5rem;
  }

  @media (max-width: 700px) {
    .partners-strip { grid-template-columns: 1fr; }
  }

  .partner-card {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 1.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: border-color 0.25s, transform 0.25s;
  }

  .partner-card:hover { border-color: var(--accent-security); transform: translateY(-3px); }

  .partner-mark { height: 30px; display: flex; align-items: center; }
  .partner-mark img { height: 100%; width: auto; display: block; }

  .partner-mark-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--white);
    border-left: 3px solid var(--accent-security);
    padding-left: 0.65rem;
    line-height: 1;
  }

  .partner-tag {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--accent-security);
    background: rgba(90, 228, 170, 0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
  }

  .partner-card h3 { font-size: 1rem; }
  .partner-card p { font-size: 0.85rem; color: var(--mid-grey); line-height: 1.6; }

  /* Ajax tag shown inline within the trust strip */
  .badge-logo img { height: 16px; width: auto; display: block; }

  /* ===== Responsive video embed ===== */
  .video-frame {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 10px;
    padding: 1rem;
    max-width: 860px;
    margin: 0 auto;
  }

  .video-embed {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
  }

  .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* ===== Video card (links out to YouTube) ===== */
  .video-card {
    position: relative;
    display: block;
    max-width: 860px;
    margin: 0 auto 2rem;
    padding-top: 56.25%;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
  }

  .video-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .video-card-title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(calc(-50% - 66px));
    z-index: 2;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    padding: 0 1.5rem;
  }

  .video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.4) 55%, rgba(10,10,10,0.55) 100%);
    transition: background 0.25s;
  }

  .video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(223, 31, 35, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px -6px rgba(223, 31, 35, 0.65);
    transition: transform 0.25s, background 0.25s;
  }

  .video-card-play svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }

  .video-card-label {
    position: absolute;
    left: 1.5rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
  }

  .video-card-label svg { width: 16px; height: 16px; flex-shrink: 0; }

  .video-card:hover .video-card-overlay { background: linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 55%, rgba(10,10,10,0.6) 100%); }
  .video-card:hover .video-card-play { transform: translate(-50%, -50%) scale(1.08); background: #c41a1d; }

  @media (max-width: 600px) {
    .video-card-play { width: 62px; height: 62px; }
    .video-card-play svg { width: 24px; height: 24px; }
    .video-card-title { font-size: 0.92rem; transform: translateY(calc(-50% - 52px)); }
  }

  /* ===== Image banners (full-width, image-led sections) ===== */
  .img-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .img-banner img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
  }

  .img-banner-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0) 100%);
    text-align: left;
  }

  @media (max-width: 700px) {
    .img-banner img { max-height: 300px; }
  }

  .img-banner-caption h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.35rem; }
  .img-banner-caption p { font-size: 0.85rem; color: #d8d8d8; max-width: 560px; line-height: 1.55; }

  /* ===== Media row: image beside text, image-led sections ===== */
  .media-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
    align-items: center;
    margin-bottom: 2.5rem;
    text-align: left;
  }

  .media-row-media img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }

  .media-row-media.portrait img { max-height: 460px; aspect-ratio: 3 / 4; width: 100%; }

  @media (max-width: 800px) {
    .media-row-media img { max-height: 320px; }
    .media-row-media.portrait img { max-height: 380px; }
  }

  .media-row-text h3 { font-size: 1.1rem; margin-bottom: 0.65rem; }
  .media-row-text p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.7; }

  .media-row.reverse .media-row-media { order: 2; }

  @media (max-width: 800px) {
    .media-row { grid-template-columns: 1fr; }
    .media-row.reverse .media-row-media { order: 0; }
  }

  /* ===== Light product cards (white/light CAME kit shots on the dark theme) ===== */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

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

  @media (max-width: 560px) {
    .product-grid { grid-template-columns: 1fr; }
  }

  .light-card {
    background: #EFEEE8;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: transform 0.25s;
  }

  .light-card:hover { transform: translateY(-4px); }

  .light-card img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .light-card span { font-size: 0.82rem; font-weight: 600; color: #181818; line-height: 1.4; }

  /* ===== Photo cards (dark-framed lifestyle/product photography) ===== */
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

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

  @media (max-width: 560px) {
    .photo-grid { grid-template-columns: 1fr; }
  }

  .photo-card {
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
  }

  .photo-card:hover { border-color: var(--accent-security); transform: translateY(-3px); }

  .photo-card img { width: 100%; height: 170px; object-fit: cover; display: block; }

  .photo-card span {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--mid-grey);
    font-weight: 600;
  }

  /* ===== Feature highlight (icon + text callout) ===== */
  .feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    border-left: 3px solid var(--accent-security);
    border-radius: 8px;
    padding: 1.75rem;
    text-align: left;
  }

  .feature-highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(90, 228, 170, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .feature-highlight-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-security);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .feature-highlight-text h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
  .feature-highlight-text p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.65; }

  @media (max-width: 600px) {
    .feature-highlight { flex-direction: column; align-items: flex-start; }
  }

  /* ===== Security service tiles (green accent) ===== */
  .tile-grid.security-tiles .tile-icon { background: rgba(90, 228, 170, 0.12); }
  .tile-grid.security-tiles .tile-icon svg { stroke: var(--accent-security); }
  .tile-grid.security-tiles .tile:hover {
    border-color: var(--accent-security);
    box-shadow: 0 12px 30px -14px rgba(90, 228, 170, 0.35);
  }

  /* ===== Textured CTA band (optional dark-texture background) ===== */
  .locations-cta.textured {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 3rem 6% 3.5rem;
  }

  .locations-cta.textured .cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
  }

  .locations-cta.textured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.72);
    z-index: 0;
  }

  .locations-cta.textured > *:not(.cta-bg) { position: relative; z-index: 1; }
