/**
 * cgp-home-page.css
 *
 * Home / front page shell — recharge.gr/  &  recharge.gr/en/
 *
 * Scope: hero, trusted-by logos, two-path routing cards,
 *        lifecycle (one-partner) strip, capability rows
 *        (planning / management / operations), why-Recharge
 *        grid, closing CTA.
 * Does NOT contain: global type/buttons (style.css), calculators.
 * Complements:      style.css :root tokens,
 *                   cgp-residential-page.css, cgp-business-page.css
 *
 * Visual language: "calm confidence, transparency, simplicity"
 *   — mirrors the residential + business page tokens (cgp-res-* / cgp-biz-*)
 *   — Geologica (display) + system-font (body)
 *   — Action blue (#1665D8) for CTAs to unify the whole site
 *   — Generous whitespace, minimal decoration, confident type
 *
 * @version 1.0.0
 * @date    2026-06-11
 */

@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;500;600;700&family=Nunito+Sans:wght@800&display=swap');

/* ============================================================
 * Token bridge (mirrors cgp-residential / cgp-business)
 * ============================================================ */

:root {
  --home-ink:          #0F2237;
  --home-navy:         #2B435E;
  --home-action:       #1665D8;
  --home-action-deep:  #0E4FB2;
  --home-blue:         #527FB3;
  --home-text:         #243C58;
  --home-text-soft:    #5C708A;
  --home-text-faint:   #94A0AE;
  --home-border:       #DDE5EE;
  --home-border-soft:  #EDF1F6;
  --home-surface:      #FFFFFF;
  --home-tint:         #F4F8FD;
  --home-tint-soft:    #F8FAFB;
  --home-r-card:       18px;
  --home-r-pill:       9999px;
  --home-r-btn:        12px;
  --home-shadow-sm:    0 2px 12px rgba(15, 34, 55, 0.07);
  --home-shadow-md:    0 6px 24px rgba(15, 34, 55, 0.10);
  --home-shadow-lg:    0 12px 40px rgba(15, 34, 55, 0.13);
  --home-shadow-cta:   0 4px 16px rgba(22, 101, 216, 0.22);
  --home-f-display:    'Geologica', Helvetica, Arial, sans-serif;
  --home-f-body:       'Helvetica Neue', Helvetica, Arial, sans-serif;
  --home-t:            all 0.20s ease;
  --home-section-v:    96px;
}

/* ============================================================
 * Layout — container + shared primitives
 * ============================================================ */

.cgp-home-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.cgp-home-section-eyebrow {
  display: block;
  font-family: var(--home-f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-blue);
  margin-bottom: 14px;
}

.cgp-home-section-title {
  font-family: var(--home-f-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.9vw, 2.5rem);
  color: var(--home-ink);
  line-height: 1.12;
  letter-spacing: -0.026em;
  margin: 0 0 16px;
}

.cgp-home-section-title .accent { color: var(--home-action); }

.cgp-home-section-lede {
  font-family: var(--home-f-body);
  font-size: 1.06rem;
  color: var(--home-text);
  line-height: 1.66;
  margin: 0;
}

/* ============================================================
 * Buttons — page-level
 * ============================================================ */

.cgp-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--home-r-btn);
  padding: 15px 30px;
  font-family: var(--home-f-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--home-t);
  border: 1.5px solid transparent;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.cgp-home-btn svg { flex-shrink: 0; transition: transform 0.2s ease; }
.cgp-home-btn:hover svg { transform: translateX(2px); }

.cgp-home-btn-primary {
  background: var(--home-action);
  color: #fff;
  border-color: var(--home-action);
  box-shadow: var(--home-shadow-cta);
}

.cgp-home-btn-primary:hover {
  background: var(--home-action-deep);
  border-color: var(--home-action-deep);
  box-shadow: 0 6px 22px rgba(22, 101, 216, 0.32);
  text-decoration: none;
  color: #fff;
}

/* Ghost — for use over the dark hero image */
.cgp-home-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cgp-home-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
}

/* Secondary — light outline on light surfaces */
.cgp-home-btn-secondary {
  background: var(--home-surface);
  color: var(--home-ink);
  border-color: var(--home-border);
  box-shadow: var(--home-shadow-sm);
}

.cgp-home-btn-secondary:hover {
  border-color: var(--home-action);
  color: var(--home-action);
  box-shadow: var(--home-shadow-md);
  text-decoration: none;
}

/* ============================================================
 * HERO
 * ============================================================ */

.cgp-home-hero {
  position: relative;
  min-height: 92vh;
  background-image: url('https://charge.guide/wp-content/uploads/outdoor-CPs.webp');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.cgp-home-hero-img-mobile { display: none; }

.cgp-home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 18, 32, 0.96) 0%,
    rgba(8, 18, 32, 0.88) 32%,
    rgba(8, 18, 32, 0.42) 58%,
    rgba(8, 18, 32, 0.10) 80%,
    transparent 94%
  );
  pointer-events: none;
  z-index: 0;
}

.cgp-home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 88px 48px;
}

.cgp-home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--home-f-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BBDCFF;
  margin-bottom: 26px;
  padding: 8px 16px;
  border: 1px solid rgba(120, 180, 248, 0.30);
  border-radius: var(--home-r-pill);
  background: rgba(22, 101, 216, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cgp-home-hero-eyebrow svg { flex-shrink: 0; }

.cgp-home-hero-title {
  font-family: var(--home-f-display);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.06;
  letter-spacing: -0.032em;
  margin: 0 0 24px;
}

.cgp-home-hero-title .hero-accent { color: #71B0F6; }

.cgp-home-hero-sub {
  font-family: var(--home-f-body);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.66;
  margin: 0 0 38px;
  max-width: 510px;
}

.cgp-home-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
 * TRUSTED-BY LOGOS
 * ============================================================ */

.cgp-home-clients {
  padding: 64px 0;
  background: var(--home-surface);
}

.cgp-home-clients-label {
  text-align: center;
  font-family: var(--home-f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-text-soft);
  margin-bottom: 44px;
}

.cgp-home-logos-wrap {
  position: relative;
  overflow: hidden;
}

.cgp-home-logos-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--home-surface));
  pointer-events: none;
  display: none;
}

.cgp-home-logos-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 44px 40px;
  align-items: center;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.cgp-home-logos-strip img {
  width: 100%;
  max-width: 168px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  opacity: 0.92;
  filter: grayscale(0.35);
  transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.cgp-home-logos-strip img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.03);
}

/* ============================================================
 * HOME vs BUSINESS — light cards
 * ============================================================ */

.cgp-home-paths {
  padding: var(--home-section-v) 0;
  background: var(--home-tint-soft);
}

.cgp-home-paths-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cgp-home-path-card {
  background: var(--home-surface);
  border-radius: var(--home-r-card);
  border: 1px solid var(--home-border-soft);
  box-shadow: var(--home-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s ease;
}

.cgp-home-path-card:hover {
  box-shadow: var(--home-shadow-lg);
}

/* 3×3 photo mosaic — removed, replaced by single hero image */

/* Single hero image — both cards */
.cgp-home-path-hero-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.cgp-home-path-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  object-position: center 30%;
  transition: transform 0.5s ease;
}

.cgp-home-path-card:hover .cgp-home-path-hero-img img {
  transform: scale(1.04);
}

/* Audience tag pill — on photo, matches residential/business page style */
.cgp-home-path-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--home-f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 13px;
  border-radius: var(--home-r-pill);
  background: rgba(15, 34, 55, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
}

.cgp-home-path-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--home-border-soft);
}

.cgp-home-path-title {
  font-family: var(--home-f-display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
}

.cgp-home-path-text {
  font-family: var(--home-f-body);
  font-size: 0.97rem;
  color: var(--home-text-soft);
  line-height: 1.64;
  margin: 0 0 20px;
}

.cgp-home-path-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.cgp-home-path-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--home-f-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--home-text);
}

.cgp-home-path-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--home-action);
  flex-shrink: 0;
}

.cgp-home-path-cta { margin-top: auto; }

/* ============================================================
 * CHARGE.DIRECT PLATFORM SECTION
 * ============================================================ */

.cgp-home-platform {
  padding: var(--home-section-v) 0;
  background: var(--home-tint);
}

.cgp-home-platform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.cgp-home-platform-desc {
  font-family: var(--home-f-body);
  font-size: 1.02rem;
  color: var(--home-text-soft);
  line-height: 1.72;
  margin: 0 0 32px;
}

.cgp-home-platform-caps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.cgp-home-platform-cap {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cgp-home-platform-cap-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-surface);
  border: 1px solid var(--home-border-soft);
  border-radius: 10px;
  color: var(--home-action);
  box-shadow: var(--home-shadow-sm);
}

.cgp-home-platform-cap-title {
  font-family: var(--home-f-display);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.008em;
  margin-bottom: 3px;
}

.cgp-home-platform-cap-body {
  font-family: var(--home-f-body);
  font-size: 0.87rem;
  color: var(--home-text-soft);
  line-height: 1.58;
}

.cgp-home-platform-link {
  align-self: flex-start;
}

/* Dashboard mockup */
.cgp-home-platform-visual {
  position: relative;
}

.cgp-home-platform-screen {
  background: var(--home-surface);
  border-radius: 14px;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-lg);
  overflow: hidden;
}

.cgp-home-platform-screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--home-tint-soft);
  border-bottom: 1px solid var(--home-border-soft);
}

.cgp-home-platform-screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-border);
}

.cgp-home-platform-screen-url {
  margin-left: 10px;
  font-family: var(--home-f-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--home-text-faint);
  letter-spacing: 0.02em;
}

.cgp-home-platform-screen-ui {
  padding: 20px;
}

.cgp-home-pui-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.cgp-home-pui-stat {
  background: var(--home-tint);
  border: 1px solid var(--home-border-soft);
  border-radius: 10px;
  padding: 14px 16px;
}

.cgp-home-pui-stat--hi { background: #EBF3FF; border-color: #BFD7F7; }

.cgp-home-pui-stat-val {
  font-family: var(--home-f-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.cgp-home-pui-stat--hi .cgp-home-pui-stat-val { color: var(--home-action); }

.cgp-home-pui-stat-val span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.cgp-home-pui-stat-label {
  font-family: var(--home-f-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-text-faint);
}

.cgp-home-pui-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cgp-home-pui-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--home-tint-soft);
  border: 1px solid var(--home-border-soft);
  border-radius: 8px;
}

.cgp-home-pui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cgp-home-pui-dot--on   { background: #22C55E; }
.cgp-home-pui-dot--warn { background: #F59E0B; }

.cgp-home-pui-site {
  flex: 1;
  font-family: var(--home-f-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--home-text);
}

.cgp-home-pui-badge {
  font-family: var(--home-f-display);
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cgp-home-pui-badge--on   { background: #DCFCE7; color: #15803D; }
.cgp-home-pui-badge--warn { background: #FEF3C7; color: #B45309; }

/* ============================================================
 * WHY RECHARGE — reworked grid with stat cards
 * ============================================================ */

.cgp-home-why {
  padding: var(--home-section-v) 0;
  background: var(--home-surface);
}

.cgp-home-why-head {
  margin-bottom: 52px;
}

.cgp-home-why-head .cgp-home-section-lede {
  max-width: 560px;
}

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

.cgp-home-why-card {
  background: var(--home-tint-soft);
  border-radius: var(--home-r-card);
  border: 1px solid var(--home-border-soft);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.cgp-home-why-card:hover {
  box-shadow: var(--home-shadow-md);
  transform: translateY(-2px);
}

.cgp-home-why-card--stat {
  background: var(--home-tint);
  border-color: var(--home-border);
  padding-top: 34px;
}

.cgp-home-why-card--stat:hover {
  border-color: #BFD7F7;
}

.cgp-home-why-bignum {
  font-family: var(--home-f-display);
  font-size: clamp(3rem, 4.6vw, 4.1rem);
  font-weight: 700;
  color: var(--home-action);
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: 10px;
}

.cgp-home-why-bignum span {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--home-blue);
}

.cgp-home-why-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-tint);
  border-radius: 11px;
  color: var(--home-action);
}

.cgp-home-why-title {
  font-family: var(--home-f-display);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.01em;
  margin: 0;
}

.cgp-home-why-body {
  font-family: var(--home-f-body);
  font-size: 0.92rem;
  color: var(--home-text-soft);
  line-height: 1.66;
  margin: 0;
}

.cgp-home-why-govgr {
  margin-top: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1;
}

.cgp-home-why-govgr .gov { color: #003366; }
.cgp-home-why-govgr .gr  { color: #00AEEF; }

/* old path-card sub-styles replaced by new dark-panel versions above */

/* ============================================================
 * LIFECYCLE — "one partner, end to end"
 * ============================================================ */

.cgp-home-lifecycle {
  padding: var(--home-section-v) 0;
  background: var(--home-surface);
}

.cgp-home-lifecycle-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.cgp-home-lifecycle-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

/* connector rule behind the icons */
.cgp-home-lifecycle-track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right,
    var(--home-border) 0%, var(--home-blue) 50%, var(--home-border) 100%);
  z-index: 0;
}

.cgp-home-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.cgp-home-step-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-surface);
  border: 1.5px solid var(--home-border);
  border-radius: 50%;
  color: var(--home-action);
  margin-bottom: 16px;
  box-shadow: var(--home-shadow-sm);
}

.cgp-home-step-num {
  font-family: var(--home-f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--home-text-faint);
  margin-bottom: 5px;
}

.cgp-home-step-label {
  font-family: var(--home-f-display);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}

.cgp-home-step-desc {
  font-family: var(--home-f-body);
  font-size: 0.85rem;
  color: var(--home-text-soft);
  line-height: 1.52;
  max-width: 150px;
}

/* ============================================================
 * CAPABILITIES — alternating media / text rows
 * ============================================================ */

.cgp-home-tools {
  padding: var(--home-section-v) 0;
  background: var(--home-tint-soft);
}

.cgp-home-tools-head {
  text-align: center;
  margin-bottom: 64px;
}

.cgp-home-tools-head .cgp-home-section-lede {
  margin: 0 auto;
  max-width: 580px;
}

.cgp-home-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cgp-home-row + .cgp-home-row { margin-top: 72px; }

/* reverse alternate rows */
.cgp-home-row.is-reversed .cgp-home-row-media { order: 2; }

.cgp-home-row-media {
  border-radius: var(--home-r-card);
  overflow: hidden;
  background: var(--home-tint);
  border: 1px solid var(--home-border-soft);
  box-shadow: var(--home-shadow-md);
  aspect-ratio: 4 / 3;
}

.cgp-home-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cgp-home-row-title-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.cgp-home-row-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-surface);
  border: 1px solid var(--home-border-soft);
  border-radius: 11px;
  color: var(--home-action);
  flex-shrink: 0;
  box-shadow: var(--home-shadow-sm);
}

.cgp-home-row-title {
  font-family: var(--home-f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.015em;
  margin: 0;
}

.cgp-home-row-desc {
  font-family: var(--home-f-body);
  font-size: 0.98rem;
  color: var(--home-text-soft);
  line-height: 1.72;
  margin: 0 0 22px;
}

.cgp-home-row-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.cgp-home-row-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--home-f-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--home-text);
  line-height: 1.4;
}

.cgp-home-row-feats li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-action);
  flex-shrink: 0;
  margin-top: 7px;
}

/* WHY RECHARGE styles moved to new block above — see cgp-home-why-card--stat etc. */

/* ============================================================
 * CLOSING CTA — light surface, flows into footer
 * ============================================================ */

.cgp-home-cta {
  padding: 96px 0 80px;
  background: var(--home-tint);
  border-top: 1px solid var(--home-border-soft);
  margin-bottom: 0;
}

.cgp-home-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cgp-home-cta-eyebrow {
  display: block;
  font-family: var(--home-f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-action);
  margin-bottom: 18px;
}

.cgp-home-cta-title {
  font-family: var(--home-f-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  color: var(--home-ink);
  line-height: 1.12;
  letter-spacing: -0.026em;
  margin: 0 0 18px;
}

.cgp-home-cta-text {
  font-family: var(--home-f-body);
  font-size: 1.1rem;
  color: var(--home-text);
  line-height: 1.66;
  margin: 0 auto 38px;
  max-width: 540px;
}

.cgp-home-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
 * CHARGE.DIRECT PLATFORM — tabbed section
 * ============================================================ */

.cgp-home-platform {
  padding: var(--home-section-v) 0;
  background: var(--home-tint);
}

.cgp-home-platform-head {
  max-width: 700px;
  margin-bottom: 52px;
}

.cgp-home-ptabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--home-border-soft);
  overflow-x: auto;
}

.cgp-home-ptab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--home-f-display);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--home-text-soft);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.cgp-home-ptab:hover { color: var(--home-ink); }

.cgp-home-ptab.active {
  color: var(--home-action);
  border-bottom-color: var(--home-action);
}

.cgp-home-ppanel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 48px 0 0;
}

.cgp-home-ppanel.active { display: grid; }

.cgp-home-ppanel-title {
  font-family: var(--home-f-display);
  font-size: clamp(1.15rem, 1.8vw, 1.48rem);
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin: 0 0 14px;
}

.cgp-home-ppanel-desc {
  font-family: var(--home-f-body);
  font-size: 1.0rem;
  color: var(--home-text-soft);
  line-height: 1.66;
  margin: 0 0 24px;
}

.cgp-home-ppanel-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}

.cgp-home-ppanel-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--home-f-display);
  font-size: 0.9rem; font-weight: 500;
  color: var(--home-text);
}

.cgp-home-ppanel-list li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--home-action); flex-shrink: 0;
}

.cgp-home-ppanel-screen {
  background: var(--home-surface);
  border-radius: 14px;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-lg);
  overflow: hidden;
}

.cgp-home-screen-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  background: var(--home-tint-soft);
  border-bottom: 1px solid var(--home-border-soft);
}

.cgp-home-screen-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--home-border); display: inline-block;
}

.cgp-home-screen-url {
  margin-left: 8px;
  font-family: var(--home-f-display); font-size: 11px; font-weight: 500;
  color: var(--home-text-faint); letter-spacing: 0.02em;
}

.cgp-home-screen-content { padding: 18px; }

.cgp-home-pstats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 16px;
}

.cgp-home-pstat {
  background: var(--home-tint); border: 1px solid var(--home-border-soft);
  border-radius: 10px; padding: 12px 14px;
}

.cgp-home-pstat--hi { background: #EBF3FF; border-color: #BFD7F7; }

.cgp-home-pstat-val {
  font-family: var(--home-f-display); font-size: 1.42rem; font-weight: 700;
  color: var(--home-ink); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}

.cgp-home-pstat--hi .cgp-home-pstat-val { color: var(--home-action); }
.cgp-home-pstat-val span { font-size: 0.86rem; font-weight: 600; letter-spacing: 0; }

.cgp-home-pstat-lbl {
  font-family: var(--home-f-display); font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--home-text-faint);
}

.cgp-home-prows { display: flex; flex-direction: column; gap: 7px; }

.cgp-home-prow {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px;
  background: var(--home-tint-soft); border: 1px solid var(--home-border-soft); border-radius: 8px;
}

.cgp-home-pdot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0; display: inline-block;
}

.cgp-home-pdot--on   { background: #22C55E; }
.cgp-home-pdot--warn { background: #F59E0B; }

.cgp-home-psite {
  flex: 1; font-family: var(--home-f-display); font-size: 0.79rem;
  font-weight: 500; color: var(--home-text);
}

.cgp-home-pbadge {
  font-family: var(--home-f-display); font-size: 10px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px; letter-spacing: 0.02em; white-space: nowrap;
}

.cgp-home-pbadge--on   { background: #DCFCE7; color: #15803D; }
.cgp-home-pbadge--warn { background: #FEF3C7; color: #B45309; }

/* platform-foot removed — no external link */

/* ============================================================
 * COUNT-UP ANIMATION
 * ============================================================ */

.cgp-home-why-bignum[data-countup] {
  transition: none;
}

/* ============================================================
 * RESPONSIVE
 * ============================================================ */

@media (max-width: 1024px) {
  .cgp-home-hero { background-position: 76% center; }
}

@media (max-width: 900px) {
  .cgp-home-logos-strip { grid-template-columns: repeat(4, 1fr); }
  .cgp-home-why-grid    { grid-template-columns: repeat(2, 1fr); }
  .cgp-home-lifecycle-track { grid-template-columns: repeat(3, 1fr); gap: 40px 0; }
  .cgp-home-lifecycle-track::before { display: none; }
  .cgp-home-ppanel { grid-template-columns: 1fr; gap: 36px; }
  .cgp-home-ppanel-screen { max-width: 520px; }
}

@media (max-width: 768px) {
  :root { --home-section-v: 64px; }
  .cgp-home-container { padding: 0 22px; }
  .cgp-home-paths-split { grid-template-columns: 1fr; gap: 20px; }
  .cgp-home-path-mosaic { grid-template-rows: repeat(3, 68px); }

  /* Logos — horizontal scroll with fade hint */
  .cgp-home-logos-wrap::after { display: block; }
  .cgp-home-logos-strip {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0 32px;
    padding: 0 22px 8px;
    justify-content: flex-start;
    max-width: none;
    margin: 0 -22px;
  }
  .cgp-home-logos-strip::-webkit-scrollbar { display: none; }
  .cgp-home-logos-strip img {
    flex: 0 0 auto;
    width: 110px;
    max-width: none;
    max-height: 56px;
  }

  /* Platform tabs → accordion on mobile */
  .cgp-home-ptabs { display: none; }

  .cgp-home-ppanel {
    display: block;
    padding: 0;
    border-top: 1px solid var(--home-border-soft);
  }

  .cgp-home-ppanel + .cgp-home-ppanel {
    margin-top: 0;
  }

  .cgp-home-ppanel::before {
    content: attr(data-label);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: var(--home-f-display);
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--home-ink);
    cursor: pointer;
  }

  .cgp-home-ppanel::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--home-action);
    float: right;
    margin-top: -36px;
  }

  .cgp-home-ppanel .cgp-home-ppanel-text,
  .cgp-home-ppanel .cgp-home-ppanel-screen {
    display: none;
    padding-bottom: 24px;
  }

  .cgp-home-ppanel.active .cgp-home-ppanel-text,
  .cgp-home-ppanel.active .cgp-home-ppanel-screen {
    display: block;
  }

  .cgp-home-ppanel.active::after { content: '−'; }
}

@media (max-width: 640px) {
  .cgp-home-hero {
    background: none; min-height: 88vh;
    align-items: flex-end; overflow: hidden;
  }
  .cgp-home-hero-img-mobile {
    display: block; position: absolute; inset: 0;
    background-image: url('https://charge.guide/wp-content/uploads/outdoor-CPs.webp');
    background-size: cover; background-position: center center;
  }
  .cgp-home-hero-overlay {
    background: linear-gradient(to top,
      rgba(8,18,32,0.97) 0%, rgba(8,18,32,0.85) 42%,
      rgba(8,18,32,0.15) 72%, transparent 88%);
  }
  .cgp-home-hero-content { padding: 32px 24px 48px; max-width: 100%; width: 100%; }
  .cgp-home-hero-title { font-size: 1.95rem; }
  .cgp-home-hero-sub   { font-size: 0.98rem; }
  .cgp-home-hero-actions .cgp-home-btn { flex: 1; justify-content: center; }
  .cgp-home-pstats { grid-template-columns: 1fr 1fr; }
  .cgp-home-pstats .cgp-home-pstat:last-child { grid-column: span 2; }
}

@media (max-width: 560px) {
  .cgp-home-logos-strip { grid-template-columns: repeat(3, 1fr); gap: 22px 16px; }
  .cgp-home-why-grid    { grid-template-columns: 1fr; }
  .cgp-home-lifecycle-track { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .cgp-home-step-desc { max-width: 130px; }
  .cgp-home-path-body { padding: 22px 20px 26px; }
  .cgp-home-path-mosaic { grid-template-rows: repeat(3, 58px); }
}
