/* ==============================================================================
   EV CHARGING — PAGE-SPECIFIC STYLES (Layer 3)
   ==============================================================================

   Page-specific styles for the Solar EV Charging page. Foundation, header,
   and footer styles live in their own files.

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

   ENQUEUE (in functions.php):

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

   STRUCTURE
   ---------
   Sections covered by this CSS:
     - Hero (with rotating background framework, only 1 slide active)
     - Trust bar (4 stats)
     - Why solar EV (intro)
     - How it works (with inline SVG flow diagrams)
     - Chargers grid (Tesla, Sigenergy, Victron home chargers)
     - Supply check section
     - Packages grid
     - HomeFlex section
     - Comparison table
     - 4-step process
     - FAQ accordions
     - Reviews carousel
     - Why Synergy
     - Coverage map / service areas
     - Insights / blog teaser
     - Quote form

   LAYER 2 CANDIDATES (defer consolidation)
   ----------------------------------------
     - .hero / .page-hero variants
     - .trust-bar
     - .section, .section-alt
     - .stats-ribbon (also on About, PV)
     - .closing-cta
     - .faq accordion components

   PAGE-SPECIFIC (Layer 3 — stay here permanently)
   -----------------------------------------------
     - .how-it-works                (SVG flow diagram component)
     - .chargers-grid               (charger comparison cards)
     - .supply-check                (form-style section)
     - .homeflex                    (HomeFlex-specific layout)
     - .compare                     (comparison table)
     - .insights                    (blog teaser strip)

   CI COMPLIANCE
   -------------
   All colours updated to CI specification on 12 May 2026.

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

/* Announcement bar */

.announcement { background: #1a2024; color: #fff; text-align: center; padding: 10px 16px; font-size: 0.92rem; font-family: var(--font-display); font-weight: 500; }

.announcement .hl { color: var(--brand-primary-light); font-weight: 600; }

.announcement a { color: #fff; text-decoration: underline; margin-left: 8px; }

.announcement a:hover { color: var(--brand-primary-light); }

/* Header */

/* Active-page state — green text + thin green underline */

/* Buttons */

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-white { background: #fff; color: var(--brand-primary-dark); }

.btn-white:hover { color: var(--brand-primary-dark); }

/* =========================================================
   PAGE HERO — rotating background, sigenstor-style
   6 layers, 36s loop, ~1.2s crossfade. Olive-green gradient
   overlay sits above the rotating images.
   ========================================================= */

.hero {
  position: relative;
  background: var(--ink); /* fallback while images decode */
  color: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

/* Rotating background layers */

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

/* Per-layer animation timing (each layer offset by 6s) */

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

/* Per-layer position overrides (default 'right center' so the photo
   subject sits on the right and doesn't fight the text on the left) */

.hero-bg-1 { --bg-pos: right center; }

.hero-bg-2 { --bg-pos: right center; }

.hero-bg-3 { --bg-pos: right center; }

.hero-bg-4 { --bg-pos: right center; }

.hero-bg-5 { --bg-pos: right center; }

.hero-bg-6 { --bg-pos: right center; }

@media (min-width: 1600px) {
  .hero-bg { background-position: 80% center; }
}

@media (max-width: 760px) {
  .hero-bg { background-position: center top; }
}

@keyframes hero-rotate {
  /* 6 layers × 6s each. Each layer: fade in (3%), hold (13%), fade out (16%) */
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  13%  { opacity: 1; }
  16%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-bg-1 { opacity: 1; }
}

/* Olive-green gradient overlay sits ABOVE the rotating images */

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

/* Hero content sits above the overlay */

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

/* Hero badge (sigenstor-style pill above headline) */

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

/* Hero typography on dark background */

.hero h1 {
  color: #fff;
  max-width: 820px;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero h1 .brand { color: var(--accent-warn); }

.hero-lede {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.95);
}

/* Credential badges restyled for dark background */

.credential-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }

.cred-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.8rem;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cred-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-light); }

.cred-badge.tesla::before { background: #ff4d4d; }

.cred-badge.sigen::before { background: #4d8eff; }

/* CTAs — keep pill+arrow style as requested, but tuned for dark hero */

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Trust strip — translucent panel on dark hero */

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 18px;
  max-width: 620px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-trust .stat { text-align: center; padding: 4px 8px; }

.hero-trust .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.1;
}

.hero-trust .lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}

/* 5.0 stars review card — bottom-right floating */

.hero-rating {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  max-width: 280px;
}

.hero-rating .rate-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--brand-dark);
  line-height: 1;
}

.hero-rating .stars { color: #f6a609; font-size: 0.95rem; letter-spacing: 1px; }

.hero-rating .meta {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .hero { padding: 70px 0 80px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .hero-rating {
    position: static;
    margin-top: 32px;
    max-width: 100%;
    width: 100%;
  }
}

/* =========================================================
   TRUST BAR — sigenstor-faithful, sits below hero
   ========================================================= */

.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: 14px;
  color: var(--ink-soft);
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}

.trust-item strong {
  color: var(--brand);
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* =========================================================
   HOW IT WORKS — energy flow diagram + explainer cards
   sigenstor-pattern dark feature panel (two-column layout)
   ========================================================= */

.how-it-works .section-header h2 strong {
  color: var(--brand-primary);
  font-weight: 700;
}

.flow-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 12px;
}

/* LEFT — dark stage holding the SVG diagram */

.flow-stage {
  background: linear-gradient(160deg, #2d3940 0%, #1a2024 100%);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  overflow: hidden;
}

.flow-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(180, 200, 87, 0.08), transparent 60%),
    radial-gradient(400px 200px at 50% 110%, rgba(180, 200, 87, 0.06), transparent 60%);
  pointer-events: none;
}

.flow-stage svg {
  width: 100%;
  height: auto;
  max-width: 380px;
  display: block;
  position: relative;
  z-index: 1;
}

/* RIGHT — explainer cards stacked */

.flow-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flow-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.flow-card:hover {
  transform: translateX(4px);
  border-color: var(--brand-primary-light);
  box-shadow: var(--shadow-sm);
}

.flow-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(167, 190, 57, 0.3);
  flex-shrink: 0;
}

.flow-card h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--ink);
}

.flow-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .flow-wrap { grid-template-columns: 1fr; gap: 28px; }
  .flow-stage { min-height: 460px; padding: 28px 20px; }
  .flow-stage svg { max-width: 320px; }
}

/* Breadcrumb */

/* Sections */

section { padding: 72px 0; }

.section-alt { background: var(--bg-soft); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 44px; }

.section-header.align-left { text-align: left; margin-left: 0; }

.section-eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-primary-dark); margin-bottom: 14px; }

.section-lede { font-size: 1.1rem; color: var(--muted); margin-top: 8px; }

/* Feature grid */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; display: flex; flex-direction: column; }

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-primary-light); }

.feature-card .media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-soft); }

.feature-card .media img { width: 100%; height: 100%; object-fit: cover; }

.feature-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.feature-card h3 { margin-bottom: 10px; }

.feature-card p { color: var(--muted); font-size: 0.97rem; flex: 1; }

.feature-card .link { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--brand-primary-dark); margin-top: 16px; }

.feature-card .link::after { content: " →"; transition: margin-left .2s; display: inline-block; }

.feature-card .link:hover::after { margin-left: 4px; }

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

/* Why grid */

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 22px; position: relative; transition: transform .2s ease, box-shadow .2s ease; }

.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.why-item .num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--brand-primary); line-height: 1; display: block; margin-bottom: 10px; }

.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }

.why-item p { font-size: 0.95rem; color: var(--muted); margin: 0; }

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

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

/* Stats ribbon */

.stats-ribbon { background: var(--brand-gradient); color: #fff; padding: 48px 0; }

.stats-ribbon .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }

.stats-ribbon .stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1; display: block; }

.stats-ribbon .stat .lbl { font-family: var(--font-display); font-size: 0.92rem; margin-top: 8px; opacity: 0.92; }

@media (max-width: 700px) { .stats-ribbon .container { grid-template-columns: repeat(2, 1fr); } }

/* Specs table */

table.specs { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; font-size: 0.95rem; }

table.specs caption { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; text-align: left; padding: 16px 20px; color: var(--ink); background: #fff; border-bottom: 1px solid var(--line); caption-side: top; }

table.specs th, table.specs td { padding: 12px 20px; text-align: left; vertical-align: top; }

table.specs th { background: var(--bg-soft); color: var(--ink); font-family: var(--font-display); font-weight: 600; width: 40%; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }

table.specs td { border-bottom: 1px solid var(--line); }

table.specs tr:last-child th, table.specs tr:last-child td { border-bottom: 0; }

/* Compare table */

table.compare { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; font-size: 0.93rem; }

table.compare caption { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; text-align: left; padding: 16px 20px; color: var(--ink); border-bottom: 1px solid var(--line); caption-side: top; }

table.compare thead th { background: var(--brand-primary); color: #fff; padding: 14px 16px; font-family: var(--font-display); font-weight: 600; text-align: left; border-right: 1px solid rgba(255,255,255,0.12); }

table.compare thead th:last-child { border-right: 0; }

table.compare tbody th { background: var(--bg-soft); color: var(--ink); padding: 12px 16px; text-align: left; font-family: var(--font-display); font-weight: 600; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }

table.compare tbody td { padding: 12px 16px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }

table.compare tbody td:last-child, table.compare tbody th:last-child { border-right: 0; }

table.compare tbody tr:last-child td, table.compare tbody tr:last-child th { border-bottom: 0; }

/* Process */

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px 22px; text-align: center; position: relative; }

.process-num { width: 56px; height: 56px; background: var(--brand-gradient); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 16px; box-shadow: var(--shadow-sm); }

.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }

.process-step p { font-size: 0.94rem; color: var(--muted); margin: 0; }

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

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

/* Reviews */

.reviews-summary { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px 32px; max-width: 640px; margin: 0 auto 32px; text-align: center; }

.rating-big { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--brand-primary-dark); line-height: 1; }

.rating-stars { color: #f6a609; font-size: 1.15rem; letter-spacing: 2px; }

.reviews-summary .meta { font-size: 0.92rem; color: var(--muted); font-family: var(--font-display); font-weight: 500; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; }

.review-card .rating-stars { font-size: 0.95rem; margin-bottom: 10px; display: block; }

.review-card p { font-size: 0.95rem; color: var(--ink-soft); }

.review-card .author { display: flex; gap: 10px; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-family: var(--font-display); }

.review-card .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.88rem; }

.review-card .author .name { font-weight: 600; font-size: 0.92rem; color: var(--ink); }

.review-card .author .src { font-size: 0.78rem; color: var(--muted); }

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

/* Coverage */

.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.coverage-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; }

.coverage-card h3 { margin-bottom: 6px; }

.coverage-card .region { color: var(--brand-primary-dark); font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; }

.coverage-card address { font-style: normal; font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.coverage-card .contact-line { font-size: 0.92rem; color: var(--ink); font-family: var(--font-display); font-weight: 500; }

.coverage-card .contact-line a { color: var(--brand-primary-dark); }

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

/* Members */

.members-strip { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }

.member-badge { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 20px; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 0.92rem; }

/* Callout */

.callout { background: var(--bg-panel); border-left: 4px solid var(--brand-primary); border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0; font-size: 0.98rem; }

.callout strong { color: var(--ink); font-family: var(--font-display); }

.callout.warn { border-left-color: var(--accent-warn); }

/* CTA banner */

.cta-banner { background: var(--brand-gradient); color: #fff; border-radius: var(--radius-lg); padding: 44px; display: grid; grid-template-columns: 1.5fr auto; gap: 24px; align-items: center; box-shadow: var(--shadow-md); }

.cta-banner h2 { color: #fff; margin-bottom: 8px; }

.cta-banner p { margin: 0; opacity: 0.95; }

@media (max-width: 720px) { .cta-banner { grid-template-columns: 1fr; text-align: center; } }

/* FAQ */

.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

details.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0; transition: box-shadow .2s ease, border-color .2s ease; }

details.faq[open] { box-shadow: var(--shadow-sm); border-color: var(--brand-primary-light); }

details.faq summary { list-style: none; padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }

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

details.faq summary::after { content: "+"; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); color: var(--brand-primary-dark); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.15rem; transition: transform .2s ease, background .2s ease; }

details.faq[open] summary::after { content: "–"; background: var(--brand-primary); color: #fff; }

details.faq .faq-body { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.75; }

/* NEW: FAQ category tabs */

.faq-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }

.faq-tab { padding: 8px 18px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--ink); cursor: default; }

.faq-tab.active { background: var(--brand-gradient); color: #fff; border-color: transparent; }

.faq-category-label { font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-primary-dark); margin: 28px 0 14px; padding-left: 4px; border-left: 3px solid var(--brand-primary); padding-left: 10px; }

/* Product spotlight */

.product-spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }

.product-spotlight.reverse .spotlight-text { order: 2; }

.product-spotlight .spotlight-media { aspect-ratio: 4 / 3; background: var(--bg-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

.product-spotlight .spotlight-media img { width: 100%; height: 100%; object-fit: cover; }

.product-spotlight h3 { font-size: 1.6rem; margin-bottom: 12px; }

.product-spotlight ul { padding-left: 20px; margin: 0 0 20px; }

.product-spotlight ul li { margin-bottom: 6px; }

@media (max-width: 820px) { .product-spotlight { grid-template-columns: 1fr; gap: 24px; } .product-spotlight.reverse .spotlight-text { order: 0; } }

/* Insights */

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.insight-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }

.insight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.insight-card .media { aspect-ratio: 16 / 9; overflow: hidden; }

.insight-card .media img { width: 100%; height: 100%; object-fit: cover; }

.insight-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.insight-card .tag { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-primary-dark); margin-bottom: 8px; }

.insight-card h3 { font-size: 1.15rem; margin-bottom: 8px; }

.insight-card p { font-size: 0.94rem; color: var(--muted); flex: 1; }

.insight-card .link { color: var(--brand-primary-dark); font-weight: 600; font-size: 0.92rem; margin-top: 14px; }

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

/* NEW: Pricing card with "what's included" */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }

.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }

.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.price-card.featured { border-color: var(--brand-primary); border-width: 2px; box-shadow: var(--shadow-md); }

.price-card.featured::before { content: "MOST POPULAR"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand-gradient); color: #fff; padding: 4px 14px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; }

.price-tier { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: var(--brand-primary-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }

.price-card h3 { margin-bottom: 4px; }

.price-card .price { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--ink); line-height: 1; margin: 12px 0 4px; }

.price-card .price .from { font-size: 0.85rem; color: var(--muted); font-weight: 500; display: block; margin-bottom: 4px; }

.price-card .price-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 20px; }

.price-card .includes { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }

.price-card .includes li { padding: 8px 0 8px 26px; font-size: 0.92rem; color: var(--ink-soft); border-bottom: 1px dashed var(--line); position: relative; }

.price-card .includes li:last-child { border-bottom: 0; }

.price-card .includes li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--brand-primary); font-weight: 800; font-size: 1rem; }

.price-card .includes li.not::before { content: "—"; color: var(--muted); }

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

/* =========================================================
   PRICING CARD IMAGE PANEL — sigenstor-style
   Square dark gradient slot at the top of each pricing card.
   When a real image is added, just replace the placeholder
   block with <img class="price-card-image" src="..." alt="..."/>
   ========================================================= */

.price-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, var(--ink) 0%, #1a2024 100%);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  display: block;
}

/* Placeholder: shown until a real image is dropped in */

.price-card-image.is-placeholder {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--ink) 0%, #1a2024 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.price-card-image.is-placeholder::before {
  content: "⚡";
  font-size: 44px;
  opacity: 0.55;
  filter: saturate(0.4);
}

.price-card-image.is-placeholder .placeholder-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.price-card-image.is-placeholder .placeholder-meta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* NEW: Supply checker panel */

.supply-check { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; margin: 24px 0; }

.supply-check-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.supply-check-row > div { padding: 20px; background: var(--bg-soft); border-radius: var(--radius-sm); }

.supply-check-row h4 { color: var(--brand-primary-dark); font-size: 1rem; margin-bottom: 8px; }

.supply-check-row p { font-size: 0.93rem; margin: 0 0 10px; }

.supply-check-row ul { font-size: 0.9rem; padding-left: 20px; margin: 0; }

@media (max-width: 700px) { .supply-check-row { grid-template-columns: 1fr; } }

/* NEW: Cost comparison card */

.cost-compare { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; margin-top: 32px; }

.cost-compare-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; text-align: center; }

.cost-tile { padding: 20px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line); }

.cost-tile .cost-big { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--ink); line-height: 1; margin-bottom: 6px; }

.cost-tile.winner .cost-big { color: var(--brand-primary-dark); }

.cost-tile .cost-lbl { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-display); font-weight: 600; }

.cost-tile .cost-note { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }

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

/* NEW: Tariff table */

.tariff-explainer { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start; }

@media (max-width: 820px) { .tariff-explainer { grid-template-columns: 1fr; } }

/* Footer accreditation strip — smaller, subtler */

/* Footer */

/* Print */

@media print {
  .announcement, .btn, .cta-banner, .hero-media, .skip-link { display: none !important; }
  section { padding: 20px 0 !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* =========================================================
   CLOSING CTA + QUOTE FORM (replaces the old tel: banner)
   sigenstor-faithful with EV-page customisation.
   ========================================================= */

.closing-cta {
  background: var(--brand-gradient), var(--ink);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.closing-cta .container { position: relative; z-index: 1; }

.closing-cta h2 { color: #fff; margin-bottom: 14px; }

.closing-cta h2 strong { color: var(--accent-warn); }

.closing-cta > .container > p {
  max-width: 720px;
  margin: 0 auto 38px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
}

/* Quote form container */

.quote-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 40px 44px 36px;
  text-align: left;
  box-shadow:
    0 24px 60px rgba(20, 28, 32, 0.32),
    0 8px 18px rgba(20, 28, 32, 0.18);
  color: var(--ink-soft);
}

.quote-form-header { text-align: center; margin-bottom: 30px; }

.quote-form-header .quote-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.quote-form-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.quote-form-header p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* Field grid */

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-form-grid .full-row { grid-column: 1 / -1; }

.quote-field { display: flex; flex-direction: column; gap: 6px; }

.quote-field label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
}

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

.quote-field input[type="text"],
.quote-field input[type="tel"],
.quote-field input[type="email"],
.quote-field textarea {
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-panel);
  border: 1.5px solid var(--line);
  border-radius: 7px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-family: 'Open Sans', sans-serif;
}

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

.quote-field input:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(167, 190, 57, 0.15);
}

.quote-field input[aria-invalid="true"],
.quote-field textarea[aria-invalid="true"] {
  border-color: #c0392b;
  background: #fdf3f1;
}

.quote-field .field-error {
  font-size: 12px;
  color: #c0392b;
  margin-top: 2px;
  min-height: 16px;
}

/* Radio pill groups (package interest, contact time) */

.quote-radio-group { display: flex; flex-direction: column; gap: 8px; }

.quote-radio-group .quote-radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-radio-options label {
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  background: var(--bg-panel);
  border: 1.5px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2px;
  position: relative;
}

.quote-radio-options input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.quote-radio-options label:has(input[type="radio"]:checked) {
  background: linear-gradient(135deg, rgba(180, 200, 87, 0.18) 0%, rgba(167, 190, 57, 0.12) 100%);
  border-color: var(--brand-primary);
  color: var(--brand-primary-dark);
  box-shadow: 0 0 0 1px var(--brand-primary);
}

.quote-radio-options label:hover { border-color: var(--brand-primary); color: var(--ink); }

/* Consent checkbox */

.quote-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.quote-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--brand-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Submit button + trust line */

.quote-form-footer {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.quote-submit {
  background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 50%, var(--brand-primary-dark) 100%);
  color: #fff;
  border: 0;
  padding: 14px 38px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(167, 190, 57, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.18s, box-shadow 0.18s;
  min-width: 240px;
}

.quote-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(167, 190, 57, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.quote-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.quote-form-trust { font-size: 12px; color: var(--ink-soft); }

/* Honeypot — hidden from users */

.quote-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form-wide error banner */

.quote-form-error {
  display: none;
  background: #fdf3f1;
  border: 1px solid #f5c6c1;
  color: #c0392b;
  padding: 12px 16px;
  border-radius: 7px;
  font-size: 13.5px;
  margin-bottom: 18px;
  text-align: center;
}

.quote-form-error.is-visible { display: block; }

/* Success state — same wrap, swapped in via JS */

.quote-form-success {
  display: none;
  text-align: center;
  padding: 50px 30px;
}

.quote-form-success.is-visible { display: block; }

.quote-form-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(167, 190, 57, 0.35);
}

.quote-form-success .success-icon svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.quote-form-success p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto 8px;
  line-height: 1.7;
}

.quote-form-success .success-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 18px;
}

.quote-form-success .success-meta a {
  color: var(--brand-primary-dark);
  font-weight: 600;
}

/* Direct-call alternative below the form */

.quote-alt {
  text-align: center;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.quote-alt strong { color: #fff; }

.quote-alt a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 1px;
}

.quote-alt a:hover { border-bottom-color: #fff; color: #fff; }

@media (max-width: 760px) {
  .quote-form-wrap { padding: 30px 20px 26px; }
  .quote-form-grid { grid-template-columns: 1fr; gap: 14px; }
  .quote-radio-options label { min-width: 0; }
  .quote-form-header h3 { font-size: 19px; }
}

/* =========================================================
   WHY SYNERGY — 8-card differentiator grid
   (ported from sigenstor.css 2026-05-25 so EV Charging's
   Why Synergy section matches the standard pattern)
   ========================================================= */

.synergy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.synergy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.synergy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-light);
}

.synergy-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
    linear-gradient(135deg, rgba(180, 200, 87, 0.22) 0%, rgba(167, 190, 57, 0.14) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(167, 190, 57, 0.18);
  transition: transform 0.3s, box-shadow 0.3s;
}

.synergy-card:hover .synergy-icon {
  transform: scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 10px rgba(167, 190, 57, 0.28);
}

.synergy-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-dark);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.synergy-card h3 {
  font-size: 16px;
  margin: 0;
  color: var(--heading);
  line-height: 1.3;
}

.synergy-card p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  color: var(--text);
}

.synergy-cta {
  text-align: center;
  margin-top: 36px;
}

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

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

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

/* =========================================================
   INSTALLATION PROCESS — 7-step timeline
   (ported from sigenstor.css 2026-05-25 so EV Charging's
   install process matches the SigenStor/Victron/Tesla layout)
   ========================================================= */

.install-steps {
  max-width: 820px;
  margin: 0 auto;
}

.install-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}

.install-step:last-child { padding-bottom: 0; }

.install-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 78px;
  width: 2px;
  height: calc(100% - 78px);
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--line) 50%);
  opacity: 0.5;
  z-index: 1;
}

.install-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b4c857 0%, #a7be39 50%, #8ea230 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow:
    0 4px 14px rgba(167, 190, 57, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.install-step-num::after {
  content: attr(data-step);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 1.2px;
}

.install-step-num svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-step:hover .install-step-num {
  transform: scale(1.06);
  box-shadow:
    0 8px 20px rgba(167, 190, 57, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.install-step-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin: 8px 0 6px;
  padding-bottom: 0;
}

.install-step-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.install-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .install-step { grid-template-columns: 50px 1fr; gap: 18px; }
  .install-step-num { width: 50px; height: 50px; }
  .install-step-num svg { width: 24px; height: 24px; }
  .install-step-num::after { bottom: -20px; font-size: 10px; }
  .install-step:not(:last-child)::before { left: 24px; top: 50px; height: calc(100% - 50px); }
}

/* =========================================================
   PREMIUM CTA POLISH — .btn-primary + .btn-hero
   (ported from v15 §10.9 / sigenstor.css 2026-05-25 so EV
   Charging CTAs render as proper pill buttons across the page)
   ========================================================= */

.btn-primary,
.btn-hero {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(167, 190, 57, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-hero:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(167, 190, 57, 0.42);
}

.btn-primary:active,
.btn-hero:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(167, 190, 57, 0.24);
}

.btn-primary:focus-visible,
.btn-hero:focus-visible {
  outline: 3px solid rgba(167, 190, 57, 0.45);
  outline-offset: 2px;
}

/* ==============================================================================
   CLIENT REVIEWS & TESTIMONIALS SECTION
   Added 2026-05-27 — static replacement for TrustIndex widget.
   ============================================================================== */

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