/*
Theme Name: Twenty Twenty-Five Child
Author: 
Description: Your description goes here
Version: 1.0
Template: twentytwentyfive

This is the child theme for Twenty Twenty-Five theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

/*
 * Synergy Energy Solutions — About Us page styles
 * --------------------------------------------------
 * Add via: WordPress Admin → Appearance → Customize → Additional CSS
 * Or upload as a child-theme stylesheet and enqueue via functions.php
 */

/* =========================================================
       DESIGN TOKENS (matched to carbon fibre template)
       ========================================================= */
    :root {
      /* Brand */
      --brand: #829823;
      --brand-dark: #6b7d1d;
      --brand-light: #a1b83a;
      --brand-gradient: linear-gradient(100deg, #829823 0%, rgba(130,152,35,0.73) 100%);

      /* Text & lines */
      --heading: #333333;
      --text: #666666;
      --line: #e2e2e2;
      --ink: #2d3940;
      --ink-soft: #4e4e4e;

      /* Backgrounds */
      --light-bg: #f7f8f4;
      --bg-panel: #fafbf6;
      --footer-bg: #2c3e4f;

      /* Accent */
      --accent-warn: #d97706;
      --yellow: #d97706;
      --green: #86CD91;

      /* Navy */
      --navy: #2d3940;
      --navy-overlay: rgba(45, 57, 64, 0.5);

      /* Aliases for shared header/footer/nav CSS */
      --brand-primary: #829823;
      --brand-primary-dark: #6b7d1d;
      --brand-primary-light: #a1b83a;
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Open Sans', sans-serif;
    }

    /* =========================================================
       RESET / BASE
       ========================================================= */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Open Sans', Arial, sans-serif;
      font-size: 14px;
      line-height: 1.7;
      color: var(--text);
      background: #fff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--brand-dark); text-decoration: none; }
    a:hover { color: var(--brand); }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Open Sans', Arial, sans-serif;
      color: var(--heading);
      line-height: 1.25;
      font-weight: 600;
    }
    h1 { font-size: 38px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
    h4 { font-size: 16px; }

    h2 strong { color: var(--brand); font-weight: 700; }

    p { margin-bottom: 1em; }
    p:last-child { margin-bottom: 0; }

    ul, ol { padding-left: 22px; margin-bottom: 1em; }
    li { margin-bottom: 6px; }

    /* =========================================================
       UTILITIES
       ========================================================= */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 30px;
    }
    .section {
      padding: 80px 0;
    }
    .section-light { background: var(--light-bg); }

    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 14px;
    }
    .lede {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text);
      max-width: 760px;
      margin: 0 auto 36px;
    }
    .section-head {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-head h2 { margin-bottom: 16px; }

    .skip-link {
      position: absolute; top: -40px; left: 0;
      background: var(--brand); color: #fff;
      padding: 8px 16px; z-index: 1000; transition: top 0.2s;
    }
    .skip-link:focus { top: 0; color: #fff; }

    /* =========================================================
       BUTTONS
       ========================================================= */
    .btn-primary {
      display: inline-block;
      background: var(--brand);
      color: #fff;
      border: 2px solid var(--brand);
      padding: 12px 28px;
      border-radius: 3px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.2s;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: #fff;
      color: var(--brand);
    }

    .btn-hero {
      display: inline-block;
      background: var(--brand);
      color: #fff;
      border: 2px solid var(--brand);
      padding: 14px 32px;
      border-radius: 3px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 700;
      font-size: 14px;
      transition: all 0.2s;
    }
    .btn-hero:hover { background: #fff; color: var(--brand); }

    .btn-hero-secondary {
      display: inline-block;
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
      padding: 14px 32px;
      border-radius: 3px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 700;
      font-size: 14px;
      transition: all 0.2s;
      margin-left: 12px;
    }
    .btn-hero-secondary:hover { background: #fff; color: var(--brand-dark); }
    @media (max-width: 600px) {
      .btn-hero-secondary { margin-left: 0; margin-top: 12px; }
    }

    .btn-white {
      display: inline-block;
      background: #fff;
      color: var(--ink);
      border: 2px solid #fff;
      padding: 14px 32px;
      border-radius: 3px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 700;
      font-size: 14px;
      transition: all 0.2s;
    }
    .btn-white:hover {
      background: transparent;
      color: #fff;
    }

    /* Pill-style nav button (for Get Quote in header) */
    .btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
      padding: 12px 26px; border-radius: 999px; cursor: pointer;
      border: 2px solid transparent; transition: all 0.25s ease;
      text-decoration: none; position: relative;
    }
    .btn::after { content: '→'; display: inline-block; transition: transform 0.25s ease; }
    .btn:hover::after { transform: translateX(4px); }
    .btn.btn-primary {
      background: var(--brand-gradient);
      color: #fff;
      border-radius: 999px;
      box-shadow: 0 4px 14px rgba(130,152,35,0.3);
      text-transform: none;
      letter-spacing: 0;
      padding: 12px 26px;
    }
    .btn.btn-primary:hover {
      color: #fff;
      background: var(--brand-gradient);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(130,152,35,0.4);
    }

    /* =========================================================
       ANNOUNCEMENT BAR
       ========================================================= */
    .announce {
      background: var(--ink); color: #fff; font-size: 0.85rem;
      padding: 10px 0; text-align: center;
    }
    .announce a { color: #fff; text-decoration: underline; }
    .announce strong { color: var(--brand-primary-light); }

    /* =========================================================
       HEADER
       ========================================================= */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; gap: 20px;
    }
    .logo img { height: 48px; width: auto; display: block; }
    .main-nav { display: flex; gap: 30px; align-items: center; }
    .main-nav > a, .main-nav > .nav-item > a {
      font-family: var(--font-display); font-weight: 500; font-size: 0.92rem;
      color: #6c6c6c; padding: 8px 0; position: relative;
      letter-spacing: 0.01em;
      transition: color 0.2s ease;
      display: inline-flex; align-items: center; gap: 5px;
      white-space: nowrap;
    }
    .main-nav > a:hover, .main-nav > .nav-item > a:hover,
    .main-nav > .nav-item:hover > a {
      color: var(--brand-primary);
    }
    .main-nav > a.is-active, .main-nav > .nav-item.is-active > a {
      color: var(--brand-primary);
    }
    .main-nav > a.is-active::after, .main-nav > .nav-item.is-active > a::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
      height: 2px; background: var(--brand-primary);
      border-radius: 2px;
    }
    .nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }

    .nav-item { position: relative; }
    .nav-item > a .nav-caret {
      display: inline-flex; align-items: center; justify-content: center;
      width: 10px; height: 10px;
      color: var(--brand-primary);
      transition: transform 0.25s ease;
    }
    .nav-item > a .nav-caret svg { width: 100%; height: 100%; display: block; }
    .nav-item:hover > a .nav-caret { transform: rotate(180deg); }
    .nav-dropdown {
      position: absolute; top: calc(100% + 8px); left: 50%;
      transform: translateX(-50%) translateY(6px);
      min-width: 220px; padding: 10px 0; margin: 0;
      background: #fff; list-style: none;
      border-radius: 8px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
      opacity: 0; visibility: hidden;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      z-index: 1000;
    }
    .nav-dropdown::before {
      content: ''; position: absolute; top: -6px; left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px; height: 12px;
      background: #fff;
      box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
    }
    .nav-item:hover > .nav-dropdown,
    .nav-item:focus-within > .nav-dropdown {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown li { margin: 0; }
    .nav-dropdown a {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      padding: 10px 20px; font-size: 0.88rem; font-weight: 500;
      color: #4a4a4a; white-space: nowrap;
      border: 0; transition: color 0.15s ease, background 0.15s ease;
    }
    .nav-dropdown a:hover { background: rgba(130,152,35,0.06); color: var(--brand-primary); }
    .nav-dropdown a::after { display: none; }
    .nav-soon {
      font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em;
      font-weight: 600; color: #999; background: #f3f3f3;
      border-radius: 999px; padding: 2px 8px; line-height: 1.4;
      font-style: normal; flex-shrink: 0;
    }

    /* Mobile nav */
    @media (max-width: 1100px) {
      .nav-toggle { display: inline-flex; }
      .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 20px; box-shadow: 0 2px 8px rgba(45,57,64,0.06); max-height: calc(100vh - 80px); overflow-y: auto; }
      .main-nav.open { display: flex; }
      .main-nav > a, .main-nav > .nav-item > a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
      .main-nav > a:last-child { border-bottom: 0; }
      .main-nav .nav-item { width: 100%; }
      .main-nav .nav-item > a { display: flex; justify-content: space-between; align-items: center; }
      .nav-dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border-top: 0; border-left: 3px solid var(--brand-primary);
        padding: 4px 0 4px 12px; margin: 0 0 4px 6px; min-width: 0;
        max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
      }
      .main-nav .nav-item.open > .nav-dropdown { max-height: 600px; }
      .nav-dropdown a { padding: 8px 4px; border-bottom: 0; }
      .nav-item > a .nav-caret { transition: transform 0.25s ease; }
      .main-nav .nav-item.open > a .nav-caret { transform: rotate(180deg); }
    }

    /* =========================================================
       BREADCRUMB
       ========================================================= */
    .breadcrumb {
      background: var(--light-bg);
      padding: 14px 0;
      font-size: 13px;
      color: var(--text);
    }
    .breadcrumb a { color: var(--brand-dark); }
    .breadcrumb .sep { color: var(--text); margin: 0 8px; }

    /* =========================================================
       PAGE HERO (rotating background)
       ========================================================= */
    .page-hero {
      position: relative;
      background: var(--ink);
      color: #fff;
      padding: 90px 0 100px;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-position: var(--bg-pos, right center);
      background-size: cover;
      background-repeat: no-repeat;
      background-color: var(--ink);
      opacity: 0;
      z-index: 0;
      animation: hero-rotate 36s infinite;
      will-change: opacity;
    }
    .hero-bg-1 { animation-delay:   0s; }
    .hero-bg-2 { animation-delay:  -6s; }
    .hero-bg-3 { animation-delay: -12s; }
    .hero-bg-4 { animation-delay: -18s; }
    .hero-bg-5 { animation-delay: -24s; }
    .hero-bg-6 { animation-delay: -30s; }
    .hero-bg-1, .hero-bg-2, .hero-bg-3,
    .hero-bg-4, .hero-bg-5, .hero-bg-6 { --bg-pos: right center; }
    @media (min-width: 1600px) {
      .hero-bg { background-position: 80% center; }
      .hero-bg-1, .hero-bg-2, .hero-bg-3,
      .hero-bg-4, .hero-bg-5, .hero-bg-6 { --bg-pos: 80% center; }
    }
    @media (max-width: 760px) {
      .hero-bg { background-position: center top; }
      .hero-bg-1, .hero-bg-2, .hero-bg-3,
      .hero-bg-4, .hero-bg-5, .hero-bg-6 { --bg-pos: center top; }
    }
    @keyframes hero-rotate {
      0%   { opacity: 0; }
      3%   { opacity: 1; }
      13%  { opacity: 1; }
      16%  { opacity: 0; }
      100% { opacity: 0; }
    }
    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg,
        rgba(130, 152, 35, 0.92) 0%,
        rgba(107, 125, 29, 0.78) 40%,
        rgba(45, 57, 64, 0.55) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 30px;
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-bg { animation: none; }
      .hero-bg-1 { opacity: 1; }
    }
    .page-hero h1 { color: #fff; max-width: 820px; margin-bottom: 18px; }
    .page-hero h1 strong { color: var(--accent-warn); font-weight: 700; }
    .page-hero .hero-lede {
      max-width: 800px;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 32px;
      color: rgba(255, 255, 255, 0.95);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: var(--brand);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      padding: 8px 16px;
      border-radius: 30px;
      margin-bottom: 22px;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* =========================================================
       TRUST BAR
       ========================================================= */
    .trust-bar {
      background: #fff;
      border-bottom: 1px solid var(--line);
      padding: 28px 0;
    }
    .trust-bar-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-around;
      align-items: center;
    }
    .trust-item {
      font-size: 13px;
      color: var(--ink-soft);
      font-weight: 600;
      text-align: center;
    }
    .trust-item strong {
      color: var(--brand);
      display: block;
      font-size: 18px;
      margin-bottom: 2px;
      font-family: 'Poppins', sans-serif;
    }

    /* =========================================================
       WHO WE ARE — two-column intro
       ========================================================= */
    .two-col-equal {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
      max-width: 1060px;
      margin: 0 auto;
    }
    .two-col-equal p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--ink-soft);
      margin-bottom: 18px;
    }
    .two-col-equal p.lead-para {
      font-size: 16px;
      color: var(--ink);
      font-weight: 500;
    }
    .about-signature {
      margin-top: 22px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: var(--brand-dark);
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    @media (max-width: 800px) {
      .two-col-equal { grid-template-columns: 1fr; gap: 24px; }
    }

    /* =========================================================
       STATS RIBBON (dark band)
       ========================================================= */
    .stats-ribbon {
      background: var(--ink);
      color: #fff;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }
    .stats-ribbon::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(700px 240px at 15% 0%, rgba(130,152,35,0.18), transparent 60%),
        radial-gradient(700px 240px at 85% 100%, rgba(161,184,58,0.10), transparent 60%);
      pointer-events: none;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      position: relative;
      z-index: 1;
    }
    .stat {
      text-align: center;
      padding: 22px 14px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }
    .stat:hover {
      transform: translateY(-3px);
      border-color: rgba(161,184,58,0.45);
    }
    .stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--brand-light);
      display: block;
      line-height: 1.05;
      letter-spacing: -0.01em;
    }
    .stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.85);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.35;
      display: block;
      margin-top: 8px;
      font-weight: 600;
    }
    @media (max-width: 900px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .stats-grid { grid-template-columns: 1fr; }
    }

    /* =========================================================
       TIMELINE (Our Story)
       ========================================================= */
    .timeline {
      position: relative;
      max-width: 860px;
      margin: 0 auto;
      padding: 0 0 0 40px;
      list-style: none;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 14px; top: 6px; bottom: 6px;
      width: 2px;
      background: linear-gradient(180deg, var(--brand) 0%, rgba(130,152,35,0.2) 100%);
    }
    .timeline-item {
      position: relative;
      padding: 0 0 36px 36px;
      margin-bottom: 0;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -32px; top: 6px;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: var(--brand-gradient);
      box-shadow: 0 0 0 4px var(--light-bg), 0 4px 10px rgba(130,152,35,0.35);
    }
    .timeline-year {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: var(--brand-dark);
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .timeline-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: var(--heading);
      line-height: 1.35;
    }
    .timeline-item p {
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.7;
      margin: 0;
    }

    /* =========================================================
       MISSION · VISION · VALUES cards
       ========================================================= */
    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 32px;
    }
    @media (max-width: 900px) {
      .mvv-grid { grid-template-columns: 1fr; }
    }
    .mission-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .mission-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.08);
      border-color: rgba(130,152,35,0.4);
    }
    .mission-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--brand-gradient);
    }
    .mission-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(130,152,35,0.12);
      color: var(--brand-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 22px;
      margin-bottom: 18px;
    }
    .mission-card h3 {
      font-size: 18px;
      color: var(--heading);
      margin-bottom: 10px;
    }
    .mission-card p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text);
      margin: 0;
    }

    /* Callout note (under mission grid) */
    .callout {
      background: #fff;
      border: 1px solid var(--line);
      border-left: 4px solid var(--brand);
      border-radius: 8px;
      padding: 22px 26px;
      max-width: 960px;
      margin: 32px auto 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    .callout p {
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--ink-soft);
      margin: 0;
    }
    .callout strong {
      font-family: 'Poppins', sans-serif;
      color: var(--heading);
    }

    /* =========================================================
       FEATURE GRID (What we do — service cards)
       ========================================================= */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }
    @media (max-width: 960px) {
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .feature-grid { grid-template-columns: 1fr; }
    }
    .feature-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.10);
      border-color: rgba(130,152,35,0.35);
    }
    .feature-img {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--light-bg);
    }
    .feature-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .feature-card:hover .feature-img img {
      transform: scale(1.04);
    }
    .feature-body {
      padding: 24px 26px 26px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .feature-body h3 {
      font-size: 17px;
      color: var(--heading);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .feature-body p {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text);
      flex: 1;
      margin-bottom: 16px;
    }
    .feature-link {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand-dark);
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s ease, gap 0.2s ease;
    }
    .feature-link::after {
      content: '→';
      transition: transform 0.2s ease;
    }
    .feature-link:hover {
      color: var(--brand);
      gap: 10px;
    }
    .feature-link:hover::after {
      transform: translateX(2px);
    }

    /* =========================================================
       WHY CHOOSE — numbered reasons grid
       ========================================================= */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    @media (max-width: 960px) {
      .why-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .why-grid { grid-template-columns: 1fr; }
    }
    .why-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 30px 28px 28px;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .why-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
      border-color: rgba(130,152,35,0.35);
    }
    .why-num {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--brand);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
      display: block;
    }
    .why-item h4 {
      font-size: 16px;
      color: var(--heading);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .why-item p {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text);
      margin: 0;
    }

    /* =========================================================
       ACCREDITATIONS GRID
       ========================================================= */
    .accred-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 32px;
    }
    @media (max-width: 960px) {
      .accred-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .accred-grid { grid-template-columns: 1fr; }
    }
    .accred-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 26px 24px 24px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .accred-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
      border-color: rgba(130,152,35,0.35);
    }
    .accred-tag {
      display: inline-block;
      font-family: 'Poppins', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--brand-dark);
      background: rgba(130,152,35,0.10);
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 14px;
    }
    .accred-card h4 {
      font-size: 16px;
      color: var(--heading);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .accred-card p {
      font-size: 13.5px;
      line-height: 1.65;
      color: var(--text);
      margin: 0;
    }

    /* Member badges strip */
    .members-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 24px;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }
    .member-badge {
      display: inline-block;
      background: rgba(130, 152, 35, 0.1);
      border: 1px solid rgba(130, 152, 35, 0.3);
      color: var(--brand-dark);
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-family: 'Poppins', sans-serif;
    }

    /* =========================================================
       COVERAGE / BRANCHES
       ========================================================= */
    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }
    @media (max-width: 900px) {
      .coverage-grid { grid-template-columns: 1fr; }
    }
    .coverage-card {
      background: #fff;
      border: 1px solid var(--line);
      border-top: 4px solid var(--brand);
      border-radius: 10px;
      padding: 28px 26px 26px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.03);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .coverage-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    }
    .coverage-card h3 {
      font-size: 18px;
      color: var(--heading);
      margin-bottom: 14px;
      line-height: 1.3;
    }
    .coverage-address {
      font-style: normal;
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.6;
      margin-bottom: 14px;
      display: block;
    }
    .coverage-cities {
      font-size: 13.5px;
      color: var(--text);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .coverage-card a[itemprop="telephone"] {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: var(--brand-dark);
      font-size: 15px;
      letter-spacing: 0.3px;
      transition: color 0.2s ease;
    }
    .coverage-card a[itemprop="telephone"]::before {
      content: '☎';
      font-size: 14px;
      opacity: 0.75;
    }
    .coverage-card a[itemprop="telephone"]:hover { color: var(--brand); }

    /* =========================================================
       REVIEWS
       ========================================================= */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    @media (max-width: 760px) {
      .reviews-grid { grid-template-columns: 1fr; }
    }
    .review-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 28px 28px 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.03);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      position: relative;
    }
    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    }
    .rating-stars {
      color: #f5b400;
      font-size: 16px;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 14px;
    }
    .review-card blockquote {
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--ink-soft);
      font-style: italic;
      margin: 0 0 18px;
      padding: 0;
      border: 0;
      quotes: "\201C" "\201D";
    }
    .review-card blockquote::before { content: open-quote; color: var(--brand); font-size: 20px; font-weight: 700; margin-right: 2px; }
    .review-card blockquote::after { content: close-quote; color: var(--brand); font-size: 20px; font-weight: 700; margin-left: 2px; }
    .review-card cite {
      display: flex;
      flex-direction: column;
      font-style: normal;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand-dark);
      letter-spacing: 0.3px;
    }
    .review-card cite span {
      font-family: 'Open Sans', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: var(--text);
      margin-top: 4px;
      letter-spacing: 0;
    }

    /* =========================================================
       FAQ ACCORDION
       ========================================================= */
    .faq-list {
      max-width: 880px;
      margin: 0 auto;
    }
    .faq {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .faq[open] {
      border-color: rgba(130,152,35,0.45);
      box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    }
    .faq summary {
      padding: 18px 56px 18px 24px;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: var(--heading);
      list-style: none;
      position: relative;
      transition: color 0.2s ease;
    }
    .faq summary:hover { color: var(--brand-dark); }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after {
      content: '+';
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      font-weight: 300;
      color: var(--brand);
      transition: transform 0.25s ease;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    .faq[open] summary::after {
      transform: translateY(-50%) rotate(45deg);
    }
    .faq-answer {
      padding: 0 24px 22px;
    }
    .faq-answer p {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text);
      margin: 0;
    }

    /* =========================================================
       CLOSING CTA BANNER
       ========================================================= */
    .closing-cta {
      background: var(--brand-gradient);
      color: #fff;
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .closing-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(700px 240px at 15% 0%, rgba(255,255,255,0.10), transparent 60%),
        radial-gradient(700px 240px at 85% 100%, rgba(255,255,255,0.08), transparent 60%);
      pointer-events: none;
    }
    .closing-cta .container { position: relative; z-index: 1; }
    .closing-cta h2 {
      color: #fff;
      max-width: 880px;
      margin: 0 auto 18px;
    }
    .closing-cta h2 strong { color: #fff; font-weight: 700; }
    .closing-cta p {
      max-width: 760px;
      margin: 0 auto 32px;
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255,255,255,0.95);
    }
    .closing-cta .cta-eyebrow {
      display: block;
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.92);
      margin-bottom: 14px;
    }
    .closing-cta .btn-white { color: var(--brand-dark); }
    .closing-cta .btn-white:hover { background: transparent; color: #fff; border-color: #fff; }
    .closing-cta .cta-meta {
      margin-top: 22px;
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      letter-spacing: 0.3px;
    }
    .closing-cta .cta-meta a {
      color: #fff;
      font-weight: 700;
      border-bottom: 1px solid rgba(255,255,255,0.4);
    }
    .closing-cta .cta-meta a:hover { color: #fff; border-color: #fff; }

    /* =========================================================
       FLOATING MOBILE CTA
       ========================================================= */
    .float-cta {
      display: none;
      position: fixed;
      bottom: 18px; right: 18px;
      z-index: 90;
      background: var(--brand);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 12px 18px;
      border-radius: 999px;
      box-shadow: 0 8px 22px rgba(0,0,0,0.22);
    }
    @media (max-width: 760px) {
      .float-cta.visible { display: inline-block; }
    }
    .float-cta:hover { background: var(--brand-dark); color: #fff; }

    /* =========================================================
       FOOTER
       ========================================================= */
    .site-footer { background: #1a2024; color: #cfd4d7; padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 48px; }
    .site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-display); font-weight: 600; }
    .site-footer ul { list-style: none; margin: 0; padding: 0; }
    .site-footer li { margin-bottom: 8px; }
    .site-footer a { color: #cfd4d7; font-size: 0.92rem; }
    .site-footer a:hover { color: var(--brand-primary-light); }
    .footer-about img { height: 52px; filter: brightness(0) invert(1); margin-bottom: 16px; }
    .footer-about p { font-size: 0.92rem; color: #9ea5aa; line-height: 1.65; }
    .footer-address { font-size: 0.9rem; line-height: 1.6; font-style: normal; }
    .footer-address strong { color: #fff; display: block; margin-top: 12px; font-family: var(--font-display); font-weight: 600; }
    .footer-address strong:first-of-type { margin-top: 0; }
    .footer-bottom {
      margin-top: 56px; padding: 24px 0;
      border-top: 1px solid #2a3339;
      text-align: center; font-size: 0.85rem; color: #7c848a;
    }
    .footer-bottom a { color: inherit; }
    .footer-accreditations {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      justify-content: center;
      align-items: center;
      padding: 24px 0;
      border-top: 1px solid #2a3339;
    }
    .footer-accreditations img {
      max-height: 38px;
      width: auto;
      filter: brightness(0) invert(1) opacity(0.65);
      transition: filter 0.25s ease;
    }
    .footer-accreditations a:hover img { filter: brightness(0) invert(1) opacity(1); }
    .footer-accreditations .footer-accred-tesla img { max-height: 30px; }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

:root :where(.is-layout-flow) > * {
  margin-block-start: unset !important;
  margin-block-end: unset !important;
}
