/* ─── Reset & Base ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red:    #D32F2F;
      --red-dk: #B71C1C;
      --black:  #111111;
      --dark:   #1A1A1A;
      --mid:    #2C2C2C;
      --grey:   #F4F4F4;
      --border: #E0E0E0;
      --white:  #FFFFFF;
      --text:   #333333;
      --muted:  #666666;
      --radius: 6px;
      --shadow: 0 4px 20px rgba(0,0,0,0.12);
    }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
      font-size: 16px;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ─── Utility ──────────────────────────────────────────────── */
    .container { max-width: 1600px; margin: 0 auto; padding: 0 48px; }

    .section-tag {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 14px;
    }
    /* Left-aligned compact block label — same pill as .section-tag but never full-width */
    .section-label {
      display: inline-block;
      align-self: flex-start; /* prevents stretching inside flex columns */
      background: var(--red);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 14px;
      width: fit-content;
    }
    .section-heading {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 800;
      color: var(--black);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 760px;
      margin-bottom: 40px;
    }
    /* Centered variants */
    .text-center { text-align: center; }
    .text-center .section-sub { margin-left: auto; margin-right: auto; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: 2px solid transparent;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s, border-color 0.2s;
      text-align: center;
    }
    .btn-primary {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .btn-primary:hover { background: var(--red-dk); border-color: var(--red-dk); transform: scale(1.06); box-shadow: 0 6px 20px rgba(211,47,47,0.35); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }
    .btn-outline:hover { background: rgba(255,255,255,0.12); transform: scale(1.06); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
    .btn-white {
      background: var(--white);
      color: var(--red);
      border: 2px solid var(--white);
      font-weight: 800;
    }
    .btn-white:hover { background: var(--grey); border-color: var(--grey); color: var(--red); transform: scale(1.06); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
    /* Icon inside buttons — sized and aligned to match text weight */
    .btn-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      vertical-align: middle;
    }

    /* ─── Top Bar ──────────────────────────────────────────────── */
    .topbar {
      background: var(--dark);
      color: rgba(255,255,255,0.75);
      font-size: 13px;
      padding: 8px 0;
    }
    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .topbar a { color: rgba(255,255,255,0.85); }
    .topbar a:hover { color: var(--red); }
    .topbar-right { display: flex; gap: 20px; align-items: center; }

    /* ─── 1. HERO ──────────────────────────────────────────────── */
    .hero {
      background: url('../images/rural-lightning-01.png') center center / cover no-repeat;
      color: var(--white);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }
    /* Dark overlay for readability */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10,10,10,0.88) 0%,
        rgba(20,20,20,0.80) 60%,
        rgba(10,10,10,0.72) 100%
      );
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
      position: relative;
    }
    .hero-left .eyebrow {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 16px;
    }
    .hero-left h1 {
      font-size: clamp(30px, 4.5vw, 52px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .hero-left h1 span { color: var(--red); }
    .hero-phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 26px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 20px;
    }
    .hero-phone-link {
      color: var(--white);
      text-decoration: none;
      font-size: inherit;
      font-weight: inherit;
    }
    .hero-phone-link:hover { color: var(--red); }
    .hero-left p {
      font-size: 16px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 32px;
      max-width: 100%;
    }
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }
    .badge {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.85);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      display: flex; align-items: center; gap: 6px;
    }
    .badge .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

    /* Hero Form */
    .hero-form-wrap {
      background: var(--white);
      border-radius: 10px;
      padding: 36px 32px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    }
    .hero-form-wrap h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 20px;
      line-height: 1.3;
    }
    .hero-form-wrap .form-sub {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 22px;
    }
    .form-group { margin-bottom: 14px; }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-size: 14px;
      color: var(--text);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
      font-family: inherit;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--red); }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      width: 100%;
      padding: 15px;
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      letter-spacing: 0.5px;
      transition: background 0.2s;
      margin-top: 4px;
    }
    .form-submit:hover { background: var(--red-dk); }
    .form-privacy {
      font-size: 11px;
      color: var(--muted);
      text-align: center;
      margin-top: 10px;
    }
    /* Validation error block shown when PHP redirects back with errors */
    .form-error-msg {
      background: #fff0f0;
      border: 1.5px solid var(--red);
      border-radius: var(--radius);
      padding: 10px 14px;
      margin-bottom: 14px;
    }
    .form-error-msg p {
      font-size: 13px;
      color: var(--red);
      margin: 0 0 4px;
      line-height: 1.5;
    }
    .form-error-msg p:last-child { margin-bottom: 0; }

    /* ─── 2. PROBLEM / VALUE — 2-column with image ─────────────── */
    .problem {
      background: var(--grey);
      padding: 0;
      border-top: 4px solid var(--red);
      overflow: hidden;
    }
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }
    /* Image column — stretches to match text column height; portrait image crops via object-fit */
    .problem-image {
      position: relative;
      overflow: hidden;
      align-self: stretch;
    }
    .problem-image img {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      display: block;
    }
    .problem-image-overlay {
      position: absolute;
      inset: 0;
      /* Mirror of FAQ overlay: subtle fade from image into grey background */
      background: linear-gradient(to right, transparent 65%, var(--grey) 100%);
      pointer-events: none;
    }
    /* Text column — vertically centred so top/bottom space is always equal at any viewport width */
    .problem-text {
      padding: 72px 48px 72px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 0;
    }
    .problem-text .section-label { margin-bottom: 10px; }
    .problem-text .section-heading { margin-bottom: 10px; }
    .problem-cols {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 16px;
    }
    .problem-col h4 {
      font-size: 17px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .problem-col h4 .col-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .col-icon.danger { background: rgba(211,47,47,0.12); }
    .col-icon.safe   { background: rgba(76,175,80,0.12); }
    .col-icon svg { width: 16px; height: 16px; }
    .problem-col p { font-size: 15px; color: var(--muted); line-height: 1.7; }

    /* ─── 3. SERVICES — centered headings, equal-height cards ──── */
    .services { padding: 72px 0; background: var(--white); }
    .services-header { text-align: center; }
    .services-header .section-sub { margin-left: auto; margin-right: auto; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 8px;
      align-items: stretch; /* equal height */
    }
    .service-card {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 28px 22px;
      transition: box-shadow 0.2s, border-color 0.2s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column; /* stretch inner content */
    }
    .service-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--red);
    }
    .service-card:hover { box-shadow: var(--shadow); border-color: var(--red); }
    .service-icon {
      width: 48px; height: 48px;
      background: rgba(211,47,47,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      flex-shrink: 0;
    }
    .service-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 2; }
    .service-card h3 {
      font-size: 16px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 8px;
    }
    .service-card p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 14px;
      line-height: 1.6;
      flex: 1; /* push benefit to bottom */
    }
    .service-benefit {
      font-size: 13px;
      font-weight: 700;
      color: var(--red);
      display: flex;
      align-items: flex-start;
      gap: 6px;
      margin-top: auto;
    }
    .service-benefit::before { content: '✓'; flex-shrink: 0; }

    .section-cta-row {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    /* ─── 4. WHY CHOOSE US — centered headings ─────────────────── */
    .why {
      background: var(--dark);
      color: var(--white);
      padding: 72px 0;
    }
    .why-header { text-align: center; }
    .why-header .section-heading { color: var(--white); }
    .why-header .section-sub { color: rgba(255,255,255,0.6); margin-left: auto; margin-right: auto; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      margin-top: 8px;
    }
    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 28px 20px;
      text-align: center;
      transition: background 0.2s;
    }
    .why-card:hover { background: rgba(211,47,47,0.15); border-color: rgba(211,47,47,0.4); }
    .why-icon {
      width: 56px; height: 56px;
      background: rgba(211,47,47,0.18);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .why-icon svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 2; }
    .why-card h4 {
      font-size: 15px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .why-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
    .why-stat {
      font-size: 28px;
      font-weight: 900;
      color: var(--red);
      margin-bottom: 4px;
    }

    /* ─── 5. TESTIMONIALS — centered headings ───────────────────── */
    .testimonials { background: var(--grey); padding: 72px 0; }
    .testimonials-header { text-align: center; }
    .testimonials-header .section-sub { margin-left: auto; margin-right: auto; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 8px;
    }
    /* Single testimonial: centre the card and cap its width so it doesn't stretch full-width */
    .testimonials-single {
      grid-template-columns: 1fr;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }
    .testi-card {
      background: var(--white);
      border-radius: 8px;
      padding: 36px 32px 32px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .testi-card::before {
      content: '\201C';
      font-size: 80px;
      line-height: 1;
      color: var(--red);
      position: absolute;
      top: 14px; left: 22px;
      font-family: Georgia, serif;
      opacity: 0.18;
    }
    .testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }
    .star { color: #F5A623; font-size: 17px; }
    .testi-card blockquote {
      font-size: 15px;
      color: var(--text);
      line-height: 1.8;
      font-style: italic;
      padding-top: 28px;
      margin-bottom: 24px;
      flex: 1;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border);
      padding-top: 18px;
      margin-top: auto;
    }
    .testi-avatar {
      width: 44px; height: 44px;
      background: var(--mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-weight: 800;
      font-size: 16px;
      flex-shrink: 0;
    }
    .testi-name { font-weight: 800; font-size: 14px; color: var(--black); }
    .testi-role { font-size: 12px; color: var(--muted); }

    /* ─── 6. OBJECTION HANDLING ────────────────────────────────── */
    .objection {
      background: url('../images/lightning-storm-02.png') center center / cover no-repeat;
      color: var(--white);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }
    .objection::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10,10,10,0.88) 0%,
        rgba(20,20,20,0.80) 60%,
        rgba(10,10,10,0.72) 100%
      );
      pointer-events: none;
    }
    .objection .container { position: relative; z-index: 1; }
    /* Objection section — uses the same .container width as all other sections;
       content is centred within that boundary */
    .objection .container {
      display: flex;
      flex-direction: column;
      align-items: center;   /* centres the inner block horizontally */
      text-align: center;
    }
    .objection .objection-inner {
      /* No max-width override — fills the full container (1600px / 48px padding)
         so left and right edges align with every other section on the page */
      width: 100%;
      text-align: center;
    }
    .objection .section-tag {
      /* Keep the pill centred above the heading */
      display: inline-block;
      align-self: auto;
    }
    .objection .section-heading {
      color: var(--white);
      max-width: 100%;
      margin: 0 0 16px;
      text-align: center;
    }
    .objection p {
      font-size: 17px;
      color: rgba(255,255,255,0.85);
      max-width: 100%;
      margin: 0 0 16px;
      line-height: 1.7;
      text-align: center;
    }
    .objection-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    /* ─── 7. FAQ — 2-column with image ─────────────────────────── */
    .faq {
      padding: 0;
      background: var(--white);
      overflow: hidden;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 440px;
    }
    /* Text / accordion column */
    .faq-content {
      padding: 72px 64px 72px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .faq-content .section-sub { margin-bottom: 28px; }
    .faq-list { width: 100%; }
    .faq-item {
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      margin-bottom: 10px;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 18px;
      text-align: left;
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      font-family: inherit;
      transition: background 0.15s;
    }
    .faq-question:hover { background: var(--grey); }
    .faq-question.open { background: var(--grey); color: var(--red); }
    .faq-chevron {
      width: 22px; height: 22px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: transform 0.25s;
    }
    .faq-chevron svg {
      width: 18px; height: 18px;
      stroke: var(--black);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.25s;
    }
    .faq-question.open .faq-chevron svg { transform: rotate(180deg); stroke: var(--red); }
    .faq-answer {
      display: none;
      padding: 10px 18px 16px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
    }
    .faq-answer.open { display: block; }

    /* Image column */
    .faq-image {
      position: relative;
      overflow: hidden;
    }
    .faq-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .faq-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to left, transparent 50%, var(--white) 100%);
      pointer-events: none;
    }

    /* ─── 8. FINAL CTA ─────────────────────────────────────────── */
    .final-cta {
      background: url('../images/lightning-storm-01.png') center center / cover no-repeat;
      color: var(--white);
      padding: 72px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.78) 0%,
        rgba(10,10,10,0.70) 50%,
        rgba(10,10,10,0.82) 100%
      );
      pointer-events: none;
    }
    .final-cta-inner { position: relative; }
    .final-cta .section-heading { color: var(--white); max-width: 860px; margin: 0 auto 16px; }
    .final-cta p {
      font-size: 17px;
      color: rgba(255,255,255,0.7);
      max-width: 700px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .final-cta-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .final-cta .btn-white {
      background: var(--white);
      color: var(--red);
      border-color: var(--white);
    }
    .final-cta .btn-white:hover {
      background: var(--grey);
      border-color: var(--grey);
      color: var(--red);
      transform: scale(1.06);
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    .final-cta .trust-row {
      display: flex;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
      margin-top: 36px;
    }
    .trust-item {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .trust-item .check { color: var(--red); font-weight: 900; }

    /* ─── Footer ───────────────────────────────────────────────── */
    /* ─── MAIN FOOTER (4-column) ──────────────────────────── */
    .site-footer {
      background: #111111;
      border-top: 3px solid var(--red);
      padding: 64px 0 48px;
      color: rgba(255,255,255,0.75);
    }
    .site-footer .container {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    /* Col 1 — Logo + tagline */
    .footer-brand img {
      height: 48px;
      width: auto;
      display: block;
      margin-bottom: 16px;
    }
    .footer-brand p {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      max-width: 240px;
    }
    /* Cols 2–4 — Link columns */
    .footer-col h4 {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover {
      color: var(--white);
    }
    .footer-col .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 14px;
      color: rgba(255,255,255,0.65);
    }
    .footer-col .footer-contact-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      stroke: var(--red);
    }
    .footer-col .footer-contact-item a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col .footer-contact-item a:hover { color: var(--white); }
    /* Copyright bar */
    .footer {
      background: #0A0A0A;
      color: rgba(255,255,255,0.45);
      text-align: center;
      padding: 20px 24px;
      font-size: 12px;
    }
    /* Responsive footer */
    
    

    /* ─── Sticky CTA Bar (mobile) ──────────────────────────────── */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--red);
      z-index: 999;
      padding: 12px 16px;
      gap: 10px;
      align-items: center;
      justify-content: center;
    }
    .sticky-cta a {
      flex: 1;
      text-align: center;
      color: var(--white);
      font-weight: 800;
      font-size: 14px;
      padding: 10px 8px;
      border-radius: var(--radius);
      border: 1.5px solid rgba(255,255,255,0.4);
    }

    /* ─── Responsive ───────────────────────────────────────────── */
    
    
    
    

    /* ─── NAVIGATION BAR ──────────────────────────────────────── */
    .navbar {
      background: var(--dark);
      border-top: 2px solid transparent;
      border-bottom: 2px solid rgba(255,255,255,0.08);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 16px rgba(0,0,0,0.35);
    }
    .navbar .container {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
      padding-top: 10px;
      padding-bottom: 10px;
    }
    /* Column 1 — Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
      min-width: 0;
    }
    .nav-logo img {
      height: 44px;
      width: auto;
      max-width: none;
      display: block;
      object-fit: contain;
      flex-shrink: 0;
    }
    .nav-logo-icon {
      width: 36px;
      height: 36px;
      background: var(--red);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav-logo-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--white);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }
    .nav-logo-name {
      font-size: 17px;
      font-weight: 900;
      color: var(--black);
      letter-spacing: -0.3px;
    }
    .nav-logo-tagline {
      font-size: 10px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    /* Column 2 — Nav menu */
    .nav-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-menu li a {
      display: block;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      border-radius: var(--radius);
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }
    .nav-menu li a:hover {
      color: var(--white);
      background: rgba(255,255,255,0.08);
    }
    .nav-menu li a.active {
      color: var(--red);
    }
    /* Column 3 — CTA */
    .nav-cta {
      flex-shrink: 0;
    }
    .nav-cta .btn {
      padding: 10px 22px;
      font-size: 14px;
      white-space: nowrap;
    }
    /* Hamburger (mobile) */
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-direction: column;
      gap: 5px;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(255,255,255,0.85);
      border-radius: 2px;
      transition: all 0.25s;
    }
    /* Tablet + Mobile nav — hamburger at ≤1024px */
    
    /* Mobile only — logo left, hamburger right */
    
    /* ─── BUTTON: ONE-SHOT SHAKE (scroll-triggered) + HOVER GROW ── */
    @keyframes btn-shake-once {
      0%           { transform: translateX(0); }
      12%          { transform: translateX(-5px); }
      24%          { transform: translateX(5px); }
      36%          { transform: translateX(-4px); }
      48%          { transform: translateX(4px); }
      60%          { transform: translateX(-2px); }
      72%          { transform: translateX(2px); }
      84%          { transform: translateX(-1px); }
      100%         { transform: translateX(0); }
    }
    /* Class added by JS when section enters viewport */
    .btn-do-shake {
      animation: btn-shake-once 0.55s ease-in-out forwards;
    }
    /* Hover: stop any animation and grow smoothly */
    .btn:not(.form-submit):hover {
      animation: none !important;
      transform: scale(1.06);
    }


    /* ─── LEGAL PAGES ─────────────────────────────────────────── */
    .legal-hero {
      position: relative;
      background: url('../images/rural-lightning-02.png') center center / cover no-repeat;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      overflow: hidden;
    }
    .legal-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,10,10,0.78) 0%, rgba(0,0,0,0.72) 100%);
    }
    .legal-hero-inner {
      position: relative;
      z-index: 1;
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .legal-hero h1 {
      font-size: clamp(38px, 6vw, 86px);
      line-height: 1.05;
      font-weight: 900;
      margin: 0;
      color: var(--white);
    }
    .legal-content {
      background: var(--grey);
      padding: 64px 0;
    }
    .legal-card {
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      border-radius: 12px;
      padding: 40px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .legal-card h2 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 18px;
      color: var(--black);
    }
    .legal-card h3 {
      font-size: 22px;
      line-height: 1.3;
      margin: 28px 0 12px;
      color: var(--black);
    }
    .legal-card p,
    .legal-card li {
      font-size: 16px;
      color: var(--text);
    }
    .legal-card p + p {
      margin-top: 12px;
    }
    .legal-card ul {
      margin: 12px 0 12px 22px;
    }
    .legal-card li + li {
      margin-top: 8px;
    }
    .legal-card a {
      color: var(--red);
      font-weight: 700;
    }
    .legal-card a:hover {
      color: var(--red-dk);
    }
