/* ==============================================================================
   ABOUT US — PAGE-SPECIFIC STYLES (Layer 3)
   ==============================================================================

   This file contains ONLY styles unique to the About Us page or used very
   sparingly elsewhere. Foundation styles (tokens, reset, typography,
   container, buttons) come from foundation.css. Header & footer styles
   come from their own theme files.

   WORDPRESS PLACEMENT
   -------------------
   wp-content/themes/synergy/assets/css/pages/about.css

   ENQUEUE (in functions.php) — only on the About page:

       if ( is_page( 'about-us' ) ) {
           wp_enqueue_style(
               'synergy-about',
               get_template_directory_uri() . '/assets/css/pages/about.css',
               array( 'synergy-foundation' ),
               filemtime( get_template_directory() . '/assets/css/pages/about.css' )
           );
       }

   LAYER 2 CANDIDATES (defer consolidation)
   ----------------------------------------
   These selectors appear on multiple pages and will eventually move to
   Layer 2 (a shared components stylesheet). Keeping them here for now
   so About works in isolation; consolidate after a few more pages
   converted:
     - .breadcrumb            (17 pages use it)
     - .page-hero             (18 pages use it)
     - .trust-bar             (17 pages use it)
     - .section, .section-light, .section-head, .eyebrow, .lede
     - .stats-ribbon, .stat-num, .stat-label
     - .faq-list, .faq, .faq-answer
     - .closing-cta
     - .feature-grid, .feature-card, .feature-img, .feature-body, .feature-link
     - .review-card, .reviews-grid

   PAGE-SPECIFIC (Layer 3 — stay here permanently)
   -----------------------------------------------
     - .page-hero rotating-background animation (6-layer CSS keyframes)
     - .btn-hero, .btn-hero-secondary  (hero CTA buttons)
     - .btn-white  (About's local override — square, not the foundation pill)
     - .accred-grid, .accred-card, .accred-tag
     - .mission-card, .mission-icon, .mvv-grid
     - .members-strip, .member-badge
     - .coverage-grid, .coverage-card, .coverage-address, .coverage-cities
     - .about-signature
     - .float-cta (mobile-only floating CTA)
     - .lead-para, .callout

   CI COMPLIANCE
   -------------
   Brand colours (#a7be39 green) updated to CI specification on 12 May 2026.
   Some RGB tuples that referenced derived shades have been updated too.

   ============================================================================== */

/* =========================================================
       DESIGN TOKENS (matched to carbon fibre template)
       ========================================================= */

/* =========================================================
       RESET / BASE
       ========================================================= */

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

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:last-child { margin-bottom: 0; }

/* =========================================================
       UTILITIES
       ========================================================= */

.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; }

/* =========================================================
       BUTTONS
       ========================================================= */

.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) */

/* =========================================================
       ANNOUNCEMENT BAR
       ========================================================= */

/* =========================================================
       HEADER
       ========================================================= */

.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(167, 190, 57, 0.92) 0%,
        rgba(142, 162, 48, 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(167,190,57,0.18), transparent 60%),
        radial-gradient(700px 240px at 85% 100%, rgba(180,200,87,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(180,200,87,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(167,190,57,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(167,190,57,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(167,190,57,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(167,190,57,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(167,190,57,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(167,190,57,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(167,190,57,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(167,190,57,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(167, 190, 57, 0.1);
      border: 1px solid rgba(167, 190, 57, 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(167,190,57,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
       ========================================================= */

.footer-address strong:first-of-type { margin-top: 0; }

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

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

/* ============================================================
   2026-06-01 — Why-choose ICONS (replaces .why-num) +
   canonical REVIEWS component (matches all other pages).
   Appended; overrides the older reviews rules above.
   ============================================================ */

/* --- Why-choose icon pill (white SVG on brand-green) --- */
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, #a4c93d 0%, #8db82e 100%);
  box-shadow: 0 6px 16px rgba(141, 184, 46, 0.30);
  margin-bottom: 18px;
}
.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Reviews component (canonical 4.7/73 block) --- */
.reviews-aggregate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto 40px;
  text-align: center;
}
.reviews-aggregate-stars { font-size: 2rem; color: #f5b800; letter-spacing: 4px; }
.reviews-aggregate-rating { font-size: 1.3rem; color: #1a2429; }
.reviews-aggregate-rating strong { font-size: 2rem; color: #a7be39; }
.reviews-aggregate-count { color: #4a5568; font-size: 0.95rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
.review-stars { color: #f5b800; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-style: italic;
  color: #1a2429;
  line-height: 1.55;
  margin: 0 0 20px;
  flex-grow: 1;
  font-size: 0.95rem;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}
.review-author { color: #1a2429; font-size: 1rem; }
.review-tag {
  display: inline-block;
  background: #a7be39;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.review-date { color: #888; font-size: 0.85rem; }
.reviews-cta { text-align: center; margin-top: 30px; color: #4a5568; }
.reviews-cta a { color: #a7be39; font-weight: 700; text-decoration: none; }
.reviews-cta a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   2026-06-01 — Accreditations section restyled to match the
   Deye/Sunsynk "Industry Memberships & Certifications" logo cards.
   Replaces the old .accred-* card layout (now unused).
   ============================================================ */
#accreditations {
  padding: 64px 0;
  background: #fff;
}
#accreditations .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 20px;
}
#accreditations .section-eyebrow {
  display: inline-block;
  color: var(--brand, #8bb524);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
#accreditations h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 16px;
}
#accreditations h2 strong { color: var(--brand, #8bb524); font-weight: 700; }
#accreditations .section-lede {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}
.accreditations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.accreditation-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px 22px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.accreditation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}
.accreditation-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  width: 100%;
}
.accreditation-logo img {
  max-height: 80px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.accreditation-logo.accreditation-tesla svg { max-width: 180px; max-height: 72px; }
.accreditation-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.3;
}
.accreditation-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
@media (max-width: 900px) {
  #accreditations h2 { font-size: 28px; }
  .accreditation-card { flex: 1 1 200px; max-width: 240px; }
}
@media (max-width: 600px) {
  #accreditations { padding: 48px 0; }
  .accreditation-card { flex: 1 1 100%; max-width: 360px; }
}

/* ============================================================
   2026-06-01 — Section A (AI/GEO content): key-facts block,
   leadership/founders cards, founder pull-quote.
   ============================================================ */

/* --- A1: Key Facts (answer-first entity block) --- */
.keyfacts {
  max-width: 1000px;
  margin: 0 auto;
  background: #f7f9f1;
  border: 1px solid #e6ebd6;
  border-left: 4px solid var(--brand, #8db82e);
  border-radius: 12px;
  padding: 30px 32px;
}
.keyfacts-title { font-size: 1.4rem; margin: 0 0 14px; color: #1a2429; }
.keyfacts-lead { font-size: 1.02rem; line-height: 1.62; color: #2a3439; margin: 0 0 22px; }
.keyfacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin: 0;
}
.keyfacts-grid > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid #e6ebd6;
}
.keyfacts-grid dt {
  font-weight: 700;
  color: var(--brand-dark, #5f7a14);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.keyfacts-grid dd { margin: 0; font-size: 0.92rem; line-height: 1.45; color: #2a3439; }
.keyfacts-grid dd a { color: var(--brand-dark, #5f7a14); font-weight: 600; }
@media (max-width: 760px) {
  .keyfacts-grid { grid-template-columns: 1fr; }
  .keyfacts-grid > div { grid-template-columns: 120px 1fr; }
}

/* --- A2: Leadership / founders --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }
.leader-card {
  background: #fff;
  border: 1px solid var(--line, #e5e7eb);
  border-top: 3px solid var(--brand, #8db82e);
  border-radius: 12px;
  padding: 28px 26px;
}
.leader-name { font-size: 1.2rem; margin: 0 0 4px; color: #1a2429; }
.leader-role {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-dark, #5f7a14);
  margin-bottom: 14px;
}
.leader-bio { font-size: 0.94rem; line-height: 1.6; color: #4a5568; margin: 0; }
.founder-quote { max-width: 860px; margin: 40px auto 0; text-align: center; border: 0; padding: 0 20px; }
.founder-quote p { font-size: 1.25rem; line-height: 1.5; font-style: italic; color: #1a2429; margin: 0 0 14px; }
.founder-quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-dark, #5f7a14);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}