:root {
        color-scheme: dark light;
        --color-navy: #0f172a;
        --color-navy-soft: #020617;
        --color-bg: #f8fafc;
        --color-bg-alt: #e5f9ee;
        --color-green: #22c55e;
        --color-green-soft: #bbf7d0;
        --color-green-deep: #16a34a;
        --color-border-subtle: rgba(15, 23, 42, 0.06);
        --color-text-main: #0f172a;
        --color-text-soft: #64748b;
        --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
        --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.12);
        --radius-xl: 1.5rem;
        --radius-lg: 1rem;
        --radius-pill: 999px;
        --container-max: 1180px;
        --header-height: 70px;
        --transition-fast: 180ms ease-out;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      html,
      body {
        margin: 0;
        padding: 0;
        font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", sans-serif;
        background-color: var(--color-bg);
        color: var(--color-text-main);
        scroll-behavior: smooth;
      }

      body {
        min-height: 100vh;
      }

      img {
        max-width: 100%;
        display: block;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .page-shell {
        min-height: 100vh;
        background: var(--color-bg);
        overflow-x: hidden;
      }

      .layout {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 1.5rem 4rem;
      }

      header {
        position: sticky;
        top: 0;
        z-index: 40;
      }

      .header-inner {
        max-width: var(--container-max);
        margin: 0 auto;
        height: var(--header-height);
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .header-bar {
        backdrop-filter: blur(16px);
        background: linear-gradient(
          to right,
          rgba(15, 23, 42, 0.96),
          rgba(15, 23, 42, 0.9)
        );
        border-bottom: 1px solid rgba(148, 163, 184, 0.22);
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #e5e7eb;
      }

      .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 1rem;
        background: radial-gradient(
            circle at 25% 20%,
            rgba(248, 250, 252, 0.85),
            transparent 62%
          ),
          conic-gradient(
            from 210deg,
            #22c55e,
            #4ade80,
            #22c55e,
            #22c55e,
            #16a34a
          );
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 32px rgba(34, 197, 94, 0.6);
      }

      .brand-mark-icon {
        width: 20px;
        height: 18px;
        border-radius: 999px;
        border: 2px solid #0f172a;
        position: relative;
        background: rgba(15, 23, 42, 0.9);
      }

      .brand-mark-icon::before,
      .brand-mark-icon::after {
        content: "";
        position: absolute;
        inset: 3px 4px;
        border-radius: 999px;
        border: 2px solid #22c55e;
      }

      .brand-mark-icon::after {
        inset: auto 4px 2px;
        height: 4px;
        border-width: 0 2px 0 2px;
      }

      .brand-text-main {
        font-weight: 700;
        letter-spacing: 0.02em;
        font-size: 0.85rem;
        text-transform: uppercase;
      }

      .brand-text-sub {
        font-size: 0.65rem;
        color: #9ca3af;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }

      nav {
        display: flex;
        align-items: center;
        gap: 1.75rem;
      }

      .nav-links {
        display: none;
        align-items: center;
        gap: 1rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #cbd5f5;
      }

      .nav-links a {
        position: relative;
        padding-bottom: 0.15rem;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #22c55e, #4ade80);
        border-radius: 999px;
        transition: width var(--transition-fast);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        padding: 0.6rem 1.15rem;
        border-radius: var(--radius-pill);
        cursor: pointer;
        border: none;
        transition: transform var(--transition-fast),
          box-shadow var(--transition-fast), background var(--transition-fast),
          color var(--transition-fast);
        white-space: nowrap;
      }

      .btn-primary {
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: #022c22;
        box-shadow: 0 14px 30px rgba(34, 197, 94, 0.45);
      }

      .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 36px rgba(34, 197, 94, 0.55);
      }

      .btn-outline {
        background: transparent;
        color: #e5e7eb;
        border: 1px solid rgba(148, 163, 184, 0.65);
      }

      .btn-outline:hover {
        background: rgba(15, 23, 42, 0.88);
        transform: translateY(-1px);
      }

      .btn-hero-secondary {
        background: rgba(15, 23, 42, 0.9);
        color: #e5e7eb;
        border: 1px solid rgba(148, 163, 184, 0.7);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.7);
      }

      .btn-hero-secondary:hover {
        background: rgba(15, 23, 42, 1);
        transform: translateY(-1px);
      }

      .btn-icon-arrow {
        width: 16px;
        height: 16px;
        border-radius: 999px;
        border: 1px solid rgba(15, 23, 42, 0.8);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(248, 250, 252, 0.9);
      }

      .btn-icon-arrow span {
        display: block;
        width: 7px;
        height: 7px;
        border-right: 1.5px solid #16a34a;
        border-bottom: 1.5px solid #16a34a;
        transform: translateX(0.5px) rotate(-45deg);
      }

      .hamburger {
        width: 38px;
        height: 38px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(15, 23, 42, 0.9);
        cursor: pointer;
      }

      .hamburger-box {
        width: 18px;
        height: 13px;
        position: relative;
      }

      .hamburger-line {
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        border-radius: 999px;
        background: #e5e7eb;
        transition: transform var(--transition-fast),
          opacity var(--transition-fast), top var(--transition-fast),
          bottom var(--transition-fast);
      }

      .hamburger-line:nth-child(1) {
        top: 0;
      }

      .hamburger-line:nth-child(2) {
        top: 5.5px;
      }

      .hamburger-line:nth-child(3) {
        bottom: 0;
      }

      .hamburger.open .hamburger-line:nth-child(1) {
        top: 5.5px;
        transform: rotate(45deg);
      }

      .hamburger.open .hamburger-line:nth-child(2) {
        opacity: 0;
      }

      .hamburger.open .hamburger-line:nth-child(3) {
        bottom: 5.5px;
        transform: rotate(-45deg);
      }

      .nav-cta-desktop {
        display: none;
      }

      .mobile-menu {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        background: rgba(15, 23, 42, 0.97);
        border-bottom: 1px solid rgba(148, 163, 184, 0.3);
        padding: 1.2rem 1.5rem 1.6rem;
        display: none;
        flex-direction: column;
        gap: 1rem;
        z-index: 30;
      }

      .mobile-menu a {
        font-size: 0.82rem;
        color: #e5e7eb;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .mobile-menu .mobile-cta {
        margin-top: 0.2rem;
      }

      .section-hero {
        padding: 2.2rem 0 3.5rem;
        color: #e5e7eb;
        display: grid;
        gap: 2.5rem;
        position: relative;
        isolation: isolate;
      }

      .section-hero::before {
        content: "";
        position: absolute;
        top: -100px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        background:
          radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 55%),
          radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.1), transparent 60%),
          #020617;
        z-index: -1;
      }

      .hero-grid {
        display: grid;
        gap: 2.25rem;
      }

      .hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.2rem 0.9rem 0.25rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.85);
        border: 1px solid rgba(148, 163, 184, 0.6);
        color: #cbd5f5;
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .hero-kicker-dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: radial-gradient(circle at 35% 30%, #bbf7d0, #22c55e);
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
      }

      .hero-title {
        font-size: 1.95rem;
        line-height: 1.2;
        margin: 1.05rem 0 0.7rem;
        max-width: 25ch;
      }

      .hero-highlight {
        color: #a5b4fc;
      }

      .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.6;
        color: #cbd5f5;
        max-width: 40ch;
      }

      .hero-subtitle-strong {
        color: #e5e7eb;
        font-weight: 500;
      }

      .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin: 1.1rem 0 1.6rem;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.9);
        border: 1px solid rgba(148, 163, 184, 0.55);
        font-size: 0.76rem;
        color: #e5e7eb;
      }

      .hero-badge span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #22c55e;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        align-items: center;
        margin-bottom: 1.5rem;
      }

      .hero-note {
        font-size: 0.78rem;
        color: #94a3b8;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .hero-note-icon {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.68rem;
        color: #e5e7eb;
      }

      .hero-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        font-size: 0.78rem;
        color: #cbd5f5;
      }

      .hero-metric label {
        display: block;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-bottom: 0.15rem;
      }

      .hero-metric strong {
        font-size: 1.1rem;
      }

      .hero-right {
        position: relative;
      }

      .hero-panel {
        position: relative;
        border-radius: var(--radius-xl);
        padding: 1.5rem 1.35rem;
        background: radial-gradient(
            circle at 0 0,
            rgba(248, 250, 252, 0.12),
            transparent 45%
          ),
          radial-gradient(
            circle at 100% 100%,
            rgba(34, 197, 94, 0.3),
            transparent 50%
          ),
          linear-gradient(145deg, #020617, #020617 20%, #020617 70%, #030712);
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(148, 163, 184, 0.4);
        overflow: hidden;
      }

      .hero-grid-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 1.1rem;
        align-items: stretch;
      }

      .ev-car {
        border-radius: 1.2rem;
        padding: 0.95rem;
        background: linear-gradient(135deg, #020617, #020617 55%, #0f172a);
        border: 1px solid rgba(30, 64, 175, 0.5);
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.9rem;
        align-items: center;
      }

      .ev-car-illustration {
        position: relative;
        padding: 0.6rem 0.2rem 0.1rem;
      }

      .ev-car-base {
        position: relative;
        width: 100%;
        height: 64px;
        border-radius: 999px;
        background: radial-gradient(
            circle at 12% 0,
            rgba(248, 250, 252, 0.9),
            transparent 50%
          ),
          linear-gradient(130deg, #22c55e, #4ade80, #16a34a);
        box-shadow: 0 18px 36px rgba(34, 197, 94, 0.55);
        overflow: hidden;
      }

      .ev-car-body {
        position: absolute;
        inset: 5px 11px 10px;
        border-radius: 999px;
        background: linear-gradient(135deg, #020617, #020617 40%, #020617);
        border: 2px solid rgba(15, 23, 42, 0.9);
      }

      .ev-car-roof {
        position: absolute;
        left: 13px;
        right: 40px;
        top: -8px;
        height: 32px;
        border-radius: 40px 40px 18px 18px;
        background: radial-gradient(
            circle at 72% 18%,
            rgba(248, 250, 252, 0.7),
            transparent 60%
          ),
          linear-gradient(135deg, #0f172a, #020617);
        border: 2px solid rgba(15, 23, 42, 0.9);
      }

      .ev-car-window {
        position: absolute;
        left: 18px;
        right: 40px;
        top: 4px;
        height: 16px;
        border-radius: 24px 24px 10px 10px;
        background: linear-gradient(135deg, #38bdf8, #e0f2fe);
        opacity: 0.92;
      }

      .ev-car-wheel {
        position: absolute;
        bottom: -5px;
        width: 22px;
        height: 22px;
        border-radius: 999px;
        background: radial-gradient(circle at 30% 25%, #9ca3af, #020617);
        border: 3px solid #020617;
        box-shadow: 0 6px 8px rgba(15, 23, 42, 0.8);
      }

      .ev-car-wheel:nth-child(1) {
        left: 20px;
      }

      .ev-car-wheel:nth-child(2) {
        right: 22px;
      }

      .ev-car-wheel::after {
        content: "";
        position: absolute;
        inset: 5px;
        border-radius: inherit;
        border: 2px solid #22c55e;
      }

      .ev-car-front {
        position: absolute;
        right: 12px;
        top: 12px;
        width: 28px;
        height: 18px;
        border-radius: 14px;
        background: #020617;
        border: 2px solid rgba(15, 23, 42, 0.9);
      }

      .ev-car-front::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 3px;
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: radial-gradient(circle at 30% 20%, #fef9c3, #facc15);
        box-shadow: 0 0 12px rgba(250, 204, 21, 0.8);
      }

      .ev-car-front::after {
        content: "";
        position: absolute;
        top: 4px;
        right: 3px;
        width: 4px;
        height: 6px;
        border-radius: 999px;
        background: #0ea5e9;
        opacity: 0.9;
      }

      .ev-car-ground {
        position: absolute;
        inset: auto 14px -10px;
        height: 12px;
        background: radial-gradient(
          ellipse at 50% 0,
          rgba(15, 23, 42, 0.85),
          transparent 70%
        );
      }

      .ev-pylon {
        position: absolute;
        right: -2px;
        bottom: 5px;
        width: 24px;
        height: 52px;
        border-radius: 0.9rem;
        background: linear-gradient(160deg, #020617, #020617 40%, #020617);
        border: 2px solid rgba(15, 23, 42, 0.95);
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.8);
      }

      .ev-pylon::before {
        content: "";
        position: absolute;
        inset: 6px 6px 18px;
        border-radius: 0.5rem;
        background: radial-gradient(
            circle at 28% 15%,
            rgba(248, 250, 252, 0.9),
            transparent 65%
          ),
          linear-gradient(140deg, #166534, #22c55e, #16a34a);
      }

      .ev-pylon::after {
        content: "";
        position: absolute;
        left: 9px;
        bottom: 7px;
        width: 6px;
        height: 10px;
        border-radius: 999px;
        border: 1.5px solid #22c55e;
      }

      .ev-cable {
        position: absolute;
        right: 10px;
        bottom: 18px;
        width: 40px;
        height: 34px;
        border-radius: 40px;
        border-right: 2px solid #22c55e;
        border-bottom: 2px solid #22c55e;
        border-left: 2px solid transparent;
        border-top: 2px solid transparent;
      }

      .ev-cable::after {
        content: "";
        position: absolute;
        right: -5px;
        bottom: -3px;
        width: 9px;
        height: 10px;
        border-radius: 3px;
        background: #020617;
        border: 2px solid #22c55e;
      }

      .ev-car-labels {
        padding-top: 0.2rem;
      }

      .ev-car-title {
        font-size: 0.85rem;
        color: #e5e7eb;
        margin-bottom: 0.2rem;
      }

      .ev-car-sub {
        font-size: 0.75rem;
        color: #9ca3af;
        margin-bottom: 0.7rem;
      }

      .ev-car-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
        font-size: 0.74rem;
      }

      .ev-chip {
        padding: 0.25rem 0.5rem;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.65);
        color: #d1d5db;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
      }

      .ev-chip-dot {
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: #22c55e;
      }

      .hero-side-panel {
        border-radius: 1.2rem;
        padding: 1rem;
        background: radial-gradient(
            circle at 15% 0,
            rgba(34, 197, 94, 0.22),
            transparent 60%
          ),
          linear-gradient(155deg, #020617, #020617 40%, #020617 80%, #020617);
        border: 1px solid rgba(148, 163, 184, 0.45);
        color: #e5e7eb;
        display: grid;
        gap: 0.7rem;
        font-size: 0.78rem;
      }

      .hero-side-title {
        font-size: 0.9rem;
        font-weight: 600;
      }

      .hero-side-list {
        display: grid;
        gap: 0.5rem;
      }

      .hero-side-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
      }

      .hero-side-item label {
        color: #94a3b8;
      }

      .hero-side-pill {
        padding: 0.2rem 0.7rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.9);
        border: 1px solid rgba(148, 163, 184, 0.7);
        font-size: 0.72rem;
      }

      .hero-side-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        margin-top: 0.2rem;
      }

      .hero-side-footnote {
        font-size: 0.7rem;
        color: #94a3b8;
      }

      .hero-side-secure {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.7rem;
        color: #bbf7d0;
      }

      .hero-side-secure-icon {
        width: 14px;
        height: 14px;
        border-radius: 4px;
        border: 1px solid rgba(34, 197, 94, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-side-secure-icon span {
        width: 6px;
        height: 8px;
        border-bottom: 1.5px solid #22c55e;
        border-right: 1.5px solid #22c55e;
        transform: rotate(40deg) translateY(-0.5px);
      }

      main {
        background: transparent;
      }

      .section {
        padding: 3rem 0 0;
        position: relative;
      }

      .section-header {
        margin-bottom: 1.75rem;
        text-align: left;
      }

      .section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.15rem 0.8rem 0.2rem;
        border-radius: 999px;
        background: rgba(220, 252, 231, 0.6);
        color: #166534;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
      }

      .section-kicker span:first-child {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #22c55e;
        flex-shrink: 0;
      }

      .section-title {
        font-size: 1.45rem;
        margin: 0.7rem 0 0.4rem;
        color: var(--color-text-main);
      }

      .section-subtitle {
        font-size: 0.95rem;
        color: var(--color-text-soft);
        max-width: 45ch;
      }

      .cards-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 1.1rem;
      }

      .card {
        background: #ffffff;
        border-radius: var(--radius-lg);
        padding: 1.2rem 1.1rem 1.2rem;
        border: 1px solid var(--color-border-subtle);
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
      }

      .card-accent {
        border-top: 3px solid #22c55e;
      }

      .card-icon {
        width: 32px;
        height: 32px;
        border-radius: 0.9rem;
        background: radial-gradient(
            circle at 25% 15%,
            rgba(248, 250, 252, 0.9),
            transparent 60%
          ),
          linear-gradient(135deg, #22c55e, #16a34a);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.8rem;
      }

      .card-icon-inner {
        width: 16px;
        height: 16px;
        border-radius: 5px;
        border: 2px solid rgba(15, 23, 42, 0.9);
        background: rgba(15, 23, 42, 0.95);
        position: relative;
      }

      .card-icon-inner::before,
      .card-icon-inner::after {
        content: "";
        position: absolute;
        inset: 3px;
        border-radius: 4px;
        border: 1.5px solid #22c55e;
      }

      .card-title {
        font-size: 0.98rem;
        margin-bottom: 0.35rem;
        color: var(--color-text-main);
      }

      .card-text {
        font-size: 0.88rem;
        color: var(--color-text-soft);
        line-height: 1.6;
      }

      .card-tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 0.75rem;
        font-size: 0.75rem;
      }

      .card-tag {
        padding: 0.18rem 0.55rem;
        border-radius: 999px;
        background: rgba(34, 197, 94, 0.1);
        color: #166534;
      }

      .types-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 1.05rem;
      }

      .type-card {
        position: relative;
        padding: 1.15rem 1.1rem 1.2rem;
        border-radius: var(--radius-lg);
        background: #ffffff;
        border: 1px solid var(--color-border-subtle);
        box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
        overflow: hidden;
      }

      .type-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.25rem 0.7rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.04);
        font-size: 0.72rem;
        color: #0f172a;
      }

      .type-badge span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
      }

      .type-badge span.ac {
        background: #22c55e;
      }

      .type-badge span.dc {
        background: #f97316;
      }

      .type-title {
        font-size: 0.96rem;
        margin: 0.6rem 0 0.2rem;
      }

      .type-power {
        font-size: 0.82rem;
        color: #16a34a;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        margin-bottom: 0.35rem;
      }

      .type-text {
        font-size: 0.86rem;
        color: var(--color-text-soft);
        line-height: 1.6;
      }

      .type-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.7rem;
        font-size: 0.76rem;
      }

      .type-meta-item {
        padding: 0.18rem 0.6rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.03);
        border: 1px dashed rgba(148, 163, 184, 0.7);
      }

      .type-accent-bar {
        position: absolute;
        inset: auto 0 -1px;
        height: 3px;
        background: linear-gradient(
          90deg,
          rgba(34, 197, 94, 0.2),
          #22c55e,
          rgba(34, 197, 94, 0.2)
        );
      }

      .advantages-list {
        display: grid;
        gap: 0.7rem;
        margin-top: 1rem;
      }

      .adv-item {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.55rem 0.8rem;
        align-items: baseline;
        font-size: 0.9rem;
      }

      .adv-bullet {
        width: 20px;
        height: 20px;
        border-radius: 999px;
        background: rgba(34, 197, 94, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .adv-bullet span {
        width: 8px;
        height: 8px;
        border-radius: 2px;
        border-bottom: 1.8px solid #16a34a;
        border-right: 1.8px solid #16a34a;
        transform: rotate(38deg) translateY(-0.6px);
      }

      .adv-title {
        font-weight: 600;
        margin-bottom: 0.15rem;
      }

      .adv-text {
        font-size: 0.86rem;
        color: var(--color-text-soft);
      }

      .steps-wrapper {
        display: grid;
        gap: 1.1rem;
      }

      .steps-timeline {
        position: relative;
        padding-left: 1.5rem;
      }

      .steps-timeline::before {
        content: "";
        position: absolute;
        left: 9px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(
          to bottom,
          rgba(148, 163, 184, 0.4),
          rgba(34, 197, 94, 0.8)
        );
      }

      .step {
        position: relative;
        padding-left: 0.5rem;
        margin-bottom: 1.2rem;
      }

      .step:last-child {
        margin-bottom: 0;
      }

      .step-marker {
        position: absolute;
        left: -1.3rem;
        top: 0.1rem;
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background: #f8fafc;
        border: 2px solid rgba(148, 163, 184, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: #475569;
      }

      .step-marker-primary {
        border-color: #22c55e;
        background: rgba(34, 197, 94, 0.1);
        color: #166534;
      }

      .step-title {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
      }

      .step-text {
        font-size: 0.86rem;
        color: var(--color-text-soft);
      }

      .steps-highlight {
        border-radius: var(--radius-lg);
        padding: 1rem;
        background: linear-gradient(
          135deg,
          rgba(34, 197, 94, 0.08),
          rgba(34, 197, 94, 0.03)
        );
        border: 1px dashed rgba(22, 163, 74, 0.7);
        font-size: 0.82rem;
        color: #166534;
      }

      .section-form {
        padding: 3rem 0 2.8rem;
      }

      .form-shell {
        display: grid;
        gap: 1.6rem;
      }

      .form-panel {
        border-radius: var(--radius-xl);
        padding: 1.6rem 1.4rem 1.5rem;
        background: #ffffff;
        box-shadow: var(--shadow-card);
        border: 1px solid rgba(148, 163, 184, 0.25);
      }

      .form-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.9rem 0.9rem;
      }

      .form-field {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.85rem;
      }

      .form-label {
        font-weight: 500;
        color: #0f172a;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 0.4rem;
      }

      .form-label span {
        font-size: 0.8rem;
        color: var(--color-text-soft);
      }

      .form-label small {
        font-size: 0.75rem;
        color: #16a34a;
      }

      .input,
      .select,
      .textarea {
        border-radius: 0.8rem;
        border: 1px solid rgba(148, 163, 184, 0.7);
        padding: 0.6rem 0.75rem;
        font: inherit;
        font-size: 0.88rem;
        color: #0f172a;
        background: #f9fafb;
        outline: none;
        transition: border-color 150ms ease-out, box-shadow 150ms ease-out,
          background 150ms ease-out;
      }

      .input::placeholder,
      .textarea::placeholder {
        color: #9ca3af;
      }

      .input:focus,
      .select:focus,
      .textarea:focus {
        border-color: #22c55e;
        box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.3);
        background: #ffffff;
      }

      .select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: linear-gradient(
            45deg,
            transparent 50%,
            #0f172a 50%
          ),
          linear-gradient(135deg, #0f172a 50%, transparent 50%);
        background-position: calc(100% - 14px) 50%,
          calc(100% - 9px) 50%;
        background-size: 7px 7px, 7px 7px;
        background-repeat: no-repeat;
      }

      .textarea {
        min-height: 80px;
        resize: vertical;
      }

      .form-footer {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
      }

      .form-disclaimer {
        font-size: 0.78rem;
        color: var(--color-text-soft);
      }

      .form-disclaimer a {
        color: #16a34a;
      }

      .form-side {
        border-radius: var(--radius-xl);
        padding: 1.3rem 1.2rem;
        background: radial-gradient(
            circle at 22% 0,
            rgba(34, 197, 94, 0.22),
            transparent 60%
          ),
          linear-gradient(155deg, #0f172a, #020617);
        color: #e5e7eb;
        border: 1px solid rgba(148, 163, 184, 0.5);
        box-shadow: var(--shadow-soft);
        font-size: 0.86rem;
        display: grid;
        gap: 0.8rem;
      }

      .form-side-title {
        font-size: 0.98rem;
        font-weight: 600;
      }

      .form-side-list {
        display: grid;
        gap: 0.5rem;
      }

      .form-side-item {
        display: flex;
        gap: 0.5rem;
      }

      .form-side-bullet {
        width: 16px;
        height: 16px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid rgba(148, 163, 184, 0.85);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        color: #a5b4fc;
      }

      .form-side-note {
        font-size: 0.78rem;
        color: #cbd5f5;
      }

      footer {
        border-top: 1px solid rgba(148, 163, 184, 0.3);
        background: #020617;
        color: #9ca3af;
      }

      .footer-inner {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 1.4rem 1.5rem 1.6rem;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.78rem;
      }

      .footer-main {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 1.2rem;
        align-items: center;
        justify-content: space-between;
      }

      .footer-main a {
        color: #e5e7eb;
      }

      .footer-secondary {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        color: #6b7280;
      }

      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
      }

      .footer-links a {
        color: #9ca3af;
      }

      .toast {
        position: fixed;
        left: 50%;
        bottom: 1.8rem;
        transform: translateX(-50%) translateY(120%);
        padding: 0.8rem 1.1rem;
        border-radius: 999px;
        background: #022c22;
        color: #ecfdf5;
        border: 1px solid rgba(34, 197, 94, 0.7);
        font-size: 0.84rem;
        display: flex;
        align-items: center;
        gap: 0.55rem;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.72);
        opacity: 0;
        pointer-events: none;
        transition: transform 220ms ease-out, opacity 220ms ease-out;
        z-index: 50;
        max-width: 90vw;
      }

      .toast-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
      }

      .toast-icon {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background: rgba(16, 185, 129, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .toast-icon span {
        width: 7px;
        height: 10px;
        border-bottom: 1.6px solid #6ee7b7;
        border-right: 1.6px solid #6ee7b7;
        transform: rotate(42deg) translateY(-0.5px);
      }

      @media (min-width: 600px) {
        .section-hero {
          padding-top: 2.8rem;
          padding-bottom: 4rem;
        }

        .hero-title {
          font-size: 2.15rem;
        }

        .hero-grid {
          display: grid;
          grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.05fr);
          gap: 2.1rem;
          align-items: center;
        }

        .hero-grid-layout {
          grid-template-columns: 1.1fr 0.9fr;
        }

        .ev-car {
          grid-template-columns: 1.1fr 1fr;
        }

        .hero-metrics {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .types-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (min-width: 768px) {
        .nav-links {
          display: flex;
        }

        .nav-cta-desktop {
          display: inline-flex;
        }

        .hamburger {
          display: none;
        }

        .mobile-menu {
          display: none !important;
        }

        .section {
          padding-top: 3.2rem;
        }

        .cards-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .advantages-list {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .steps-wrapper {
          grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
          align-items: center;
        }

        .form-shell {
          grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
          align-items: stretch;
        }

        .form-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

      @media (min-width: 1024px) {
        .layout {
          padding-inline: 2rem;
        }

        .header-inner {
          padding-inline: 2rem;
        }

        .hero-title {
          font-size: 2.4rem;
        }

        .section {
          padding-top: 3.5rem;
        }
      }

    .reviews-widget-section {
      padding: 2.8rem 0 2rem;
    }

    .reviews-widget-inner {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .reviews-widget-card {
      background: linear-gradient(135deg, #ffffff, #f8fafc);
      border: 1px solid #e5e7eb;
      border-radius: 20px;
      box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
      padding: 1.2rem 1.1rem 1.35rem;
    }

    .reviews-widget-head {
      margin-bottom: 0.9rem;
    }

    .reviews-widget-kicker {
      margin: 0 0 0.25rem;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 800;
      color: #b91c1c;
    }

    .reviews-widget-title {
      margin: 0;
      font-size: clamp(1.35rem, 2.4vw, 1.95rem);
      line-height: 1.2;
      color: #111827;
      letter-spacing: -0.02em;
    }

    .reviews-widget-subtitle {
      margin: 0.5rem 0 0;
      font-size: 0.93rem;
      color: #4b5563;
      max-width: 65ch;
    }

    .reviews-widget-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin: 0.85rem 0 1rem;
    }

    .reviews-widget-proof span {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      border-radius: 999px;
      padding: 0.28rem 0.7rem;
      font-size: 0.79rem;
      font-weight: 700;
      color: #334155;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
    }

    .reviews-widget-note {
      margin: 0.75rem 0 0;
      font-size: 0.82rem;
      color: #6b7280;
      text-align: center;
    }

    @media (min-width: 768px) {
      .reviews-widget-card {
        padding: 1.55rem 1.45rem 1.6rem;
      }
    }

    @media (max-width: 767px) {
      .reviews-widget-inner {
        padding: 0 1rem;
      }
    }


  /* header-single-cta */
  header .menu-toggle,
  header .nav-toggle,
  header .hamburger,
  header .mobile-menu,
  header .nav-mobile {
    display: none !important;
  }

  header .nav-links,
  header .links,
  header .nav-link {
    display: none !important;
  }

  header nav,
  header nav.site-nav,
  header nav.primary-nav,
  header .site-nav,
  header .primary-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.5rem !important;
  }

  header nav ul,
  header nav .nav-list,
  header nav .links,
  header nav .nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0.5rem !important;
  }

  header nav ul > li,
  header nav .nav-list > li,
  header nav .links > li,
  header nav .nav-links > li {
    display: none !important;
  }

  header nav ul > li.nav-cta,
  header nav .nav-list > li.nav-cta,
  header nav .links > li.nav-cta,
  header nav .nav-links > li.nav-cta {
    display: inline-flex !important;
  }

  header a.btn,
  header a.btn-primary,
  header a.nav-cta,
  header .nav-cta,
  header .header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    white-space: nowrap !important;
  }

  header .btn-ghost,
  header .btn-outline {
    display: none !important;
  }

/* faq-site-section */
  .faq-site-section {
    padding: 2.6rem 0 1.8rem;
  }

  .faq-site-wrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .faq-site-head {
    margin-bottom: 1rem;
  }

  .faq-site-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #6b7280;
  }

  .faq-site-title {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    line-height: 1.25;
    color: #111827;
  }

  .faq-site-grid {
    display: grid;
    gap: 0.7rem;
  }

  .faq-site-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    padding: 0.75rem 0.9rem;
  }

  .faq-site-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #111827;
    list-style: none;
  }

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

  .faq-site-answer {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    color: #4b5563;
  }

  @media (max-width: 767px) {
    .faq-site-wrap {
      padding: 0 1rem;
    }
  }