/* ═══════════════════════════════════════════════════════════════
   EV HOUSE · Redesign inspired by Tesla / Zeekr / Xiaomi EV / Rolls-Royce
   Large photos · minimal UI · huge typography · generous whitespace
   ═══════════════════════════════════════════════════════════════ */

:root {
  --green:        #0c8140;
  --green-bright: #14a352;
  --green-dark:   #085e2e;

  --ink:       #0a0a0a;
  --ink-soft:  #1a1a1a;
  --text:      #141414;
  --text-dim:  #5a5a5a;
  --text-mute: #9a9a9a;

  --bg:        #ffffff;
  --bg-soft:   #f5f5f3;
  --bg-dark:   #050505;
  --hairline:        rgba(0, 0, 0, 0.08);
  --hairline-strong: rgba(0, 0, 0, 0.16);
  --hairline-dark:   rgba(255, 255, 255, 0.10);

  --font-display: 'Unbounded', system-ui, -apple-system, sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  --header-h: 84px;
  --max-w:    1440px;

  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ─── UTILITIES ─────────────────────────────────────────────────── */
.italic       { font-style: italic; font-weight: 400; }
.accent       { color: var(--green); }
.accent-bright{ color: var(--green-bright); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--green);
}
.eyebrow-light { color: rgba(255,255,255,0.7); }
.eyebrow-light::before { background: var(--green-bright); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slight scale variant for cards */
.pillar.reveal,
.why-item.reveal,
.model-card,
.service-small.reveal {
  transform: translateY(36px) scale(0.97);
}
.pillar.reveal.visible,
.why-item.reveal.visible,
.service-small.reveal.visible {
  transform: translateY(0) scale(1);
}

/* Card hover lift (shared by pillars, services, models) */
.model-card,
.service-small.reveal {
  transition: opacity 1s var(--ease), transform 1.1s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.4s var(--ease);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER · Minimal, Tesla-style
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  color: #fff;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline-dark);
}
.header.light {
  color: var(--ink);
}
.header.light.scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
  padding: 0 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; gap: 12px; }
}

.logo-link {
  display: flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}
.logo {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.logo-link:hover .logo { opacity: 0.85; }
@media (max-width: 768px) {
  .logo, .logo-link { height: 32px; }
}

.nav-desktop {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 16px;
}
@media (max-width: 968px) { .nav-desktop { display: none; } }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: inherit;
  opacity: 0.9;
  position: relative;
  padding: 6px 2px;
  transition: opacity 0.2s var(--ease);
}
.nav-link:hover { opacity: 1; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* ─── Language toggle ─── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 100px;
  cursor: pointer;
  opacity: 0.75;
  transition: all 0.25s var(--ease);
}
.lang-toggle:hover { opacity: 1; transform: translateY(-1px); }
.lang-toggle svg { width: 14px; height: 14px; opacity: 0.85; }
.lang-toggle .lang-current { letter-spacing: 0.08em; }
@media (max-width: 540px) {
  .header-actions .lang-toggle { padding: 6px 10px; font-size: 11px; }
  .header-actions .lang-toggle svg { width: 13px; height: 13px; }
}
.lang-toggle--mobile {
  align-self: flex-start;
  margin-top: 6px;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
  padding: 10px 16px;
  font-size: 13px;
}
.lang-toggle--mobile:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: #fff;
}
.lang-toggle--mobile svg { width: 16px; height: 16px; }
.lang-toggle-text { opacity: 0.55; }

.header-phone {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.8;
  transition: all 0.25s var(--ease);
}
.header-phone:hover { opacity: 1; transform: scale(1.05); }
.header-phone svg { width: 16px; height: 16px; }
@media (min-width: 969px) {
  .header-phone { display: flex; }
}

.btn-cta-desktop {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.btn-cta-desktop:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12, 129, 64, 0.35);
}
@media (max-width: 968px) { .btn-cta-desktop { display: none; } }

.burger {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease);
}
.burger:hover { opacity: 1; }
.burger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.burger.active span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.active span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
@media (min-width: 969px) { .burger { display: none; } }

/* ─── MOBILE MENU ─────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100dvh;
  background: #0a0a0a;
  color: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg); }
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu-inner {
  padding: 96px 32px 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline-dark);
  color: #fff;
  transition: padding 0.3s var(--ease), color 0.3s var(--ease);
}
.mobile-nav-link span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--green-bright);
  min-width: 28px;
}
.mobile-nav-link:hover { padding-left: 8px; color: var(--green-bright); }

.mobile-cta { margin-top: auto; }
.mobile-phone {
  border-top: 1px solid var(--hairline-dark);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-phone-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.mobile-phone-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.mobile-email { font-size: 14px; color: rgba(255,255,255,0.7); }

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-backdrop.active { opacity: 1; pointer-events: auto; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--green);
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(12, 129, 64, 0.35); }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease);
}
.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.btn-ghost-light svg {
  width: 16px;
  height: 16px;
  animation: arrowDown 2s ease-in-out infinite;
}
@keyframes arrowDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.link-btn {
  display: inline;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.link-btn:hover { color: var(--green); }

/* ═══════════════════════════════════════════════════════════════
   HERO · Concept-first: badge + headline above, car slide below
   Background = car photo slider with auto-rotation
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  width: 100%;
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* Top intro badge */
.hero-intro {
  position: absolute;
  top: calc(var(--header-h) + 22px);
  left: 32px;
  z-index: 20;
  animation: fadeInDown 0.9s var(--ease) 0.3s both;
}
@media (max-width: 768px) {
  .hero-intro { left: 20px; top: calc(var(--header-h) + 14px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--green-bright);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2);   opacity: 0;   }
}

/* SLIDER (background + slide info card) */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s var(--ease);
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}
.hero-slide.active .hero-slide-img {
  animation: heroSlideZoom 8s ease-out forwards;
}
@keyframes heroSlideZoom {
  0%   { transform: scale(1.12) translateX(2%); opacity: 0.6; }
  20%  { opacity: 1; }
  100% { transform: scale(1) translateX(0); opacity: 1; }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 22%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.55) 78%,
    rgba(0,0,0,0.92) 100%);
}

/* Slide info card (small, in bottom-right) */
.hero-slide-info {
  display: none !important;  /* Design update: name/spec card removed */
}
@media (max-width: 768px) {
  .hero-slide-info { bottom: 100px; }
}
.hero-slide-info-inner {
  margin-left: auto;
  max-width: 420px;
  text-align: right;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(4px);
}
.hero-slide.active .hero-slide-info-inner {
  animation: slideInfoIn 1s var(--ease) 0.55s forwards;
}
@keyframes slideInfoIn {
  60% { filter: blur(0); }
  to  { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@media (max-width: 768px) {
  .hero-slide-info-inner { max-width: 100%; text-align: left; }
}
.hero-slide-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  margin-bottom: 14px;
}
.hero-slide-name {
  display: none;  /* removed per design update — use pagination dot labels only */
}
.hero-slide-meta { display: none; }
.hero-slide-eyebrow { display: none; }

/* MAIN CONCEPT BLOCK — heading on top, actions on bottom (centered) */
.hero-main {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  pointer-events: none;
}
.hero-main > .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: clamp(120px, 16vh, 180px);
}
.hero-main-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: none;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .hero-main > .container {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: clamp(110px, 14vh, 160px);
  }
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 0.4s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.4vw, 48px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
@media (max-width: 420px) {
  .hero-headline { font-size: 20px; letter-spacing: -0.02em; }
}
.hero-headline span { display: block; overflow: hidden; }
.hero-headline span > span { display: inline-block; transform: translateY(100%); animation: heroLineUp 1s var(--ease-out) forwards; }
.hero-headline span:nth-child(1) > span,
.hero-headline span:nth-child(1) { animation: heroLineUpFull 1s var(--ease-out) 0.5s both; }
.hero-headline span:nth-child(2) { animation: heroLineUpFull 1s var(--ease-out) 0.65s both; }
.hero-headline span:nth-child(3) { animation: heroLineUpFull 1s var(--ease-out) 0.8s both; }
@keyframes heroLineUpFull {
  from { opacity: 0; transform: translateY(40%); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 1s forwards;
}
.hero-tagline b { color: #fff; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: auto;          /* push to bottom of flex column */
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 1.15s forwards;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--green);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.btn-primary-hero:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12, 129, 64, 0.45);
}
.btn-primary-hero svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn-primary-hero:hover svg { transform: translateX(4px); }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.16);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Slider arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  opacity: 0.65;
  transition: all 0.3s var(--ease);
}
.hero-arrow:hover {
  opacity: 1;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.05);
}
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }
@media (max-width: 768px) {
  .hero-arrow { width: 40px; height: 40px; opacity: 0.5; }
  .hero-arrow svg { width: 16px; height: 16px; }
  .hero-arrow-prev { left: 8px; }
  .hero-arrow-next { right: 8px; }
}

/* Pagination */
.hero-pagination {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 14px;
  padding: 0 20px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.hero-pagination::-webkit-scrollbar { display: none; }
@media (max-width: 768px) { .hero-pagination { bottom: 24px; gap: 8px; } }

.hero-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 4px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  min-width: 72px;
  transition: opacity 0.3s var(--ease);
  opacity: 0.5;
}
.hero-dot:hover { opacity: 0.8; }
.hero-dot.active { opacity: 1; }

.dot-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: color 0.3s var(--ease), font-weight 0.3s var(--ease);
}
.hero-dot.active .dot-label {
  color: #fff;
  font-weight: 700;
}
.dot-bar {
  display: block;
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.dot-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: #fff;
  transition: width 0.3s var(--ease);
}
.hero-dot.active .dot-bar::after {
  animation: dotFill 6s linear forwards;
}
@keyframes dotFill {
  from { width: 0; }
  to   { width: 100%; }
}
@media (max-width: 560px) {
  .dot-bar { width: 36px; }
  .dot-label { display: none; }
  .hero-dot { min-width: auto; padding: 4px; }
}

/* Short screens */
@media (max-height: 760px) {
  .hero-headline { font-size: clamp(28px, 4.5vw, 52px); margin-bottom: 14px; }
  .hero-tagline { font-size: 13px; margin-bottom: 18px; }
  .hero-main { padding-bottom: 160px; }
}
@media (max-height: 620px) {
  .hero-headline { font-size: clamp(24px, 3.8vw, 40px); margin-bottom: 10px; }
  .hero-tagline { font-size: 12px; margin-bottom: 14px; }
  .hero-slide-info { bottom: 80px; }
  .hero-main { padding-bottom: 130px; }
}

/* MOBILE FIRST: phones (≤640px) */
@media (max-width: 640px) {
  .hero {
    height: 100dvh;
    min-height: 560px;
  }
  .hero-headline {
    font-size: clamp(20px, 5.6vw, 28px);
    line-height: 1.08;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .hero-tagline {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .hero-actions { gap: 10px; justify-content: center; }
  .hero-actions .btn-primary-hero,
  .hero-actions .btn-ghost-hero {
    justify-content: center;
    padding: 13px 24px;
    font-size: 13px;
  }
  /* Hide slide-info card on mobile - photo speaks for itself */
  .hero-slide-info { display: none; }
  /* Bottom-heavy overlay so text is readable over photo */
  .hero-slide-overlay {
    background: linear-gradient(180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.1) 35%,
      rgba(0,0,0,0.65) 65%,
      rgba(0,0,0,0.92) 100%);
  }
}


@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineUp {
  to { transform: translateY(0); }
}

/* Hero marquee */
.hero-marquee {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
}
.marquee-track .dot { color: var(--green-bright); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   INTRO — "Не салон. Дім."
   Two-column top (title + text), 5 pillars row, stats row
   ═══════════════════════════════════════════════════════════════ */
.intro {
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 12vw, 140px);
  background: var(--bg);
  color: var(--ink);
}

.intro-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 960px) {
  .intro-top { grid-template-columns: 1fr; gap: 32px; align-items: start; }
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 120px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.intro-right { display: flex; flex-direction: column; gap: 20px; padding-bottom: 16px; }
.intro-lead {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.intro-sub {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.7;
  color: var(--text-dim);
}

/* 5 pillars */
.intro-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 1100px) { .intro-pillars { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 700px)  { .intro-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .intro-pillars { grid-template-columns: 1fr; gap: 2px; } }

.pillar {
  padding: 24px 20px;
  border-radius: 12px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.pillar:hover { background: var(--bg-soft); transform: translateY(-2px); }
.pillar-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(12, 129, 64, 0.08);
  color: var(--green);
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar:hover .pillar-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.05);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}

/* Stats row */
.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: clamp(40px, 6vw, 64px);
}
@media (max-width: 900px) { .intro-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 520px) { .intro-stats { grid-template-columns: 1fr 1fr; gap: 24px; } }

.stat-block { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat-unit {
  font-size: 0.5em;
  color: var(--green);
  margin-left: 2px;
  font-weight: 500;
}
.stat-cap {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE · Brand panels with OVERLAY info on hero photo
   ═══════════════════════════════════════════════════════════════ */
.showcase {
  background: var(--bg-soft);
  position: relative;
}
.showcase-header {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg-soft);
}
.showcase-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 1100px;
}
.showcase-lead {
  margin-top: 28px;
  max-width: 760px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text-dim);
}

/* Bonus row — extended model list */
.models-bonus {
  margin-top: 32px;
  padding: 24px 28px;
  background: #fafaf8;
  border: 1px dashed var(--hairline-strong);
  border-radius: 14px;
}
.bonus-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.bonus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bonus-list span {
  display: inline-block;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 100px;
}

/* Pill tabs sticky */
.brand-switcher-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 10;
  background: rgba(245, 245, 243, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
}
.brand-switcher {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0;
}
.brand-switcher::-webkit-scrollbar { display: none; }

.brand-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.brand-tab:hover { border-color: var(--ink); background: #fff; }
.brand-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tab-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mute);
  padding: 2px 7px;
  background: var(--hairline);
  border-radius: 100px;
  min-width: 20px;
  text-align: center;
}
.brand-tab.active .tab-count {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}

/* Brand panels */
.brand-panels { position: relative; background: var(--bg-soft); }

.brand-panel {
  display: none;
  position: relative;
}
.brand-panel.active {
  display: block;
  animation: panelFade 0.7s var(--ease);
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero photo with OVERLAY info (like zeekr.com.ua screenshot) */
.panel-hero {
  position: relative;
  width: 100%;
  min-height: clamp(620px, 78vh, 820px);
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.panel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  z-index: 0;
}
.brand-panel.active .panel-photo {
  animation: panelZoom 14s ease-out forwards;
}
@keyframes panelZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.panel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.15) 35%,
      rgba(0,0,0,0.7) 70%,
      rgba(0,0,0,0.9) 100%);
  z-index: 1;
}
.panel-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0 56px;
}
.panel-overlay-info { max-width: 900px; }

.panel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
  padding: 7px 14px;
  background: rgba(20, 163, 82, 0.14);
  border: 1px solid rgba(20, 163, 82, 0.3);
  border-radius: 100px;
  margin-bottom: 20px;
}
.panel-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.panel-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 32px;
}

.panel-specs-overlay {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .panel-specs-overlay {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
  }
}
.spec-o-val {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.spec-o-val span {
  font-size: 0.55em;
  color: rgba(255,255,255,0.65);
  margin-left: 2px;
  font-weight: 400;
}
.spec-o-cap {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.panel-actions-overlay {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.panel-price-o {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.panel-price-o .from {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.panel-price-o .val {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Models grid below hero photo */
.panel-models {
  background: #fff;
  padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--hairline);
}
.models-head { margin-bottom: 40px; max-width: 800px; }
.models-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .models-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .models-grid { grid-template-columns: 1fr; } }

.model-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.model-card:hover {
  background: #fff;
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(12, 129, 64, 0.12);
}
.model-card:hover .model-image img { transform: scale(1.04); }

.model-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.model-image-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.model-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%);
  background-size: 24px 24px;
}
.model-image-placeholder span {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.model-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.model-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.model-name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.model-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.model-specs {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  padding-top: 10px;
  border-top: 1px solid var(--hairline);
}
.model-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   EDITORIAL · Fullscreen quote (Rolls-Royce style)
   ═══════════════════════════════════════════════════════════════ */
.editorial {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}
.editorial-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.7) 100%);
}
.editorial-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0;
}
.editorial-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 88px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 1200px;
}
.editorial-quote span {
  display: block;
  opacity: 0.92;
}
.editorial-quote .italic { opacity: 1; margin-top: 0.15em; }
.editorial-author {
  margin-top: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════════
   WHY EV · Big numbers
   ═══════════════════════════════════════════════════════════════ */
.why-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.section-head {
  max-width: 900px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 100px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.why-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}
@media (max-width: 1000px) { .why-items { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
@media (max-width: 560px) { .why-items { grid-template-columns: 1fr; gap: 40px; } }

.why-item {
  border-top: 1px solid var(--hairline-strong);
  padding-top: 24px;
}
.why-big {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.why-big .pre {
  font-size: 0.6em;
  color: var(--text-dim);
  margin-right: 4px;
}
.why-big .u {
  font-size: 0.42em;
  color: var(--text-mute);
  margin-left: 4px;
  font-weight: 500;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.why-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES · Asymmetric grid
   ═══════════════════════════════════════════════════════════════ */
.services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-big {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease);
}
@media (max-width: 1000px) { .service-big { grid-column: span 2; grid-row: auto; min-height: 380px; } }
@media (max-width: 560px) { .service-big { grid-column: span 1; } }

.service-big:hover { transform: translateY(-4px); }
.service-big-media {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.service-big-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
}
.service-big-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.service-big:hover .service-big-media img { transform: scale(1.04); }
.service-big-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}
.service-big-info h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
}
.service-big-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 440px;
  line-height: 1.55;
}

.service-small {
  grid-column: span 2;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--hairline);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.service-small:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
@media (max-width: 1000px) { .service-small { grid-column: span 1; } }
@media (max-width: 560px) { .service-small { grid-column: span 1; } }

.service-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: auto;
  padding-bottom: 32px;
}
.service-big .service-num { color: var(--green-bright); padding-bottom: 12px; }
.service-small h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.service-small p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.service-list {
  list-style: none;
  margin-top: 16px;
  padding: 16px 0 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.service-small:hover .service-list li::before {
  background: var(--green-bright);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-dark);
  color: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 100px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}
.contact-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 48px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-dark);
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline-dark);
  transition: all 0.3s var(--ease);
}
a.contact-row:hover { padding-left: 12px; }
.cr-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hairline-dark);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
a.contact-row:hover .cr-icon {
  background: rgba(20, 163, 82, 0.15);
  border-color: var(--green-bright);
}
.cr-icon svg { width: 18px; height: 18px; color: #fff; }
.cr-cap {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.cr-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline-dark);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 560px) { .contact-form { padding: 28px 24px; } }

.form-head { margin-bottom: 32px; }
.form-step {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green-bright);
  margin-bottom: 10px;
}
.form-head h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
}
.form-head p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.label-opt {
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--hairline-dark);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s var(--ease);
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 3px rgba(20, 163, 82, 0.15);
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}
.form-note .link-btn { color: rgba(255,255,255,0.75); }
.form-note .link-btn:hover { color: var(--green-bright); }

/* ═══════════════════════════════════════════════════════════════
   SEO BLOCK
   ═══════════════════════════════════════════════════════════════ */
.seo-block {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
}
.seo-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--ink);
  max-width: 900px;
}
.seo-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.seo-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}
.seo-content strong { color: var(--ink); font-weight: 600; }
.seo-tags {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px !important;
  color: var(--text-mute) !important;
}
.seo-tags strong { color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 80px 0 32px;
  background: var(--ink);
  color: #fff;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline-dark);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

.footer-logo { height: 36px; margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--green-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal .link-btn { color: rgba(255,255,255,0.65); font-size: 12px; }
.footer-legal .link-btn:hover { color: var(--green-bright); }
.footer-dot { opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.modal.open { display: flex; animation: modalFadeIn 0.3s var(--ease); }
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  animation: modalSlideUp 0.4s var(--ease);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.modal-close:hover { background: #fff; border-color: var(--ink); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }

.modal-body {
  padding: 48px 48px 40px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  color: var(--ink);
}
@media (max-width: 560px) {
  .modal { padding: 48px 12px 20px; }
  .modal-body { padding: 32px 24px 28px; }
}
.modal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal-meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 32px;
}
.modal-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.modal-body p,
.modal-body ul {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.modal-body ul { padding-left: 20px; }
.modal-body ul li { list-style: disc; margin-bottom: 6px; }
.modal-body a { color: var(--green); text-decoration: underline; }
.modal-body strong { color: var(--ink); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   MOTION REDUCE
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-photo { animation: none; transform: none; }
  .hero-title-row > span { transform: none; animation: none; }
}

/* ─── MISSING COSMETIC HOOKS ────────────────────────────────── */
.btn-cta {} /* base — .btn-cta-desktop has the actual visual */
.contact-info { min-width: 0; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }
.hero-btn-primary {} /* inherits from .btn-primary */

/* ═══════════════════════════════════════════════════════════════
   MOBILE-FIRST GLOBAL TUNING (≤640px)
   Compact typography, denser layouts, touch-friendly targets
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Section spacing — tighter */
  .intro,
  .why-section,
  .services,
  .contact,
  .seo-block {
    padding-top: clamp(56px, 12vw, 80px);
    padding-bottom: clamp(56px, 12vw, 80px);
  }
  .showcase-header { padding-top: clamp(56px, 12vw, 80px); padding-bottom: clamp(36px, 8vw, 60px); }
  .panel-content { padding-top: clamp(40px, 8vw, 60px); padding-bottom: clamp(56px, 12vw, 80px); }
  .panel-models { padding-top: clamp(40px, 8vw, 60px); padding-bottom: clamp(56px, 12vw, 80px); }

  /* Headlines */
  .intro-title,
  .showcase-heading,
  .section-heading,
  .contact-heading {
    font-size: clamp(34px, 9vw, 50px);
    line-height: 1.02;
  }

  /* Intro grid stack tighter */
  .intro-top {
    gap: 24px !important;
    padding-bottom: 36px !important;
  }
  .intro-lead { font-size: 16px !important; }
  .intro-sub { font-size: 14px !important; }

  /* Pillars: 1 column with denser cards */
  .intro-pillars {
    grid-template-columns: 1fr 1fr !important;
    gap: 4px !important;
    padding: 28px 0 !important;
  }
  .pillar { padding: 16px 12px !important; }
  .pillar-icon {
    width: 32px; height: 32px;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  .pillar-icon svg { width: 16px; height: 16px; }
  .pillar h3 { font-size: 13px; margin-bottom: 4px; }
  .pillar p { font-size: 11px; line-height: 1.4; }

  /* Stats row */
  .intro-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding-top: 28px !important;
  }
  .stat-num { font-size: clamp(28px, 8vw, 38px); }

  /* Brand panel hero — compact */
  .panel-hero {
    min-height: 480px !important;
  }
  .panel-name { font-size: clamp(36px, 11vw, 56px); margin-bottom: 14px; }
  .panel-tag {
    font-size: 9px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }
  .panel-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Specs — 2 columns on phones */
  .panel-specs-overlay {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 24px !important;
    padding: 20px 0 !important;
  }
  .spec-o-val { font-size: 22px; }
  .spec-o-cap { font-size: 9px; }

  /* Panel actions wrap */
  .panel-actions-overlay {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .panel-actions-overlay .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .panel-price-o .val { font-size: 22px; }

  /* Models grid tighter */
  .models-head { margin-bottom: 24px !important; }
  .models-title { font-size: clamp(22px, 6vw, 28px); }
  .models-grid { gap: 10px !important; }
  .model-card { border-radius: 12px; }
  .model-info { padding: 14px 16px 18px; }
  .model-name { font-size: 16px; }
  .model-sub { font-size: 12px; margin-bottom: 8px; }
  .model-specs { font-size: 11px; padding-top: 8px; }
  .model-price { font-size: 14px; }
  .model-badge { font-size: 9px; margin-bottom: 5px; }

  .models-bonus {
    margin-top: 24px !important;
    padding: 16px 18px !important;
  }
  .bonus-list span { font-size: 12px; padding: 5px 11px; }

  /* Brand switcher pill bar */
  .brand-switcher { gap: 6px; }
  .brand-tab {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }
  .tab-count { font-size: 10px; padding: 2px 6px; }

  /* Why-section big numbers — 1 column */
  .why-items {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .why-big { font-size: clamp(40px, 12vw, 56px); margin-bottom: 16px; }
  .why-item h3 { font-size: 16px; }
  .why-item p { font-size: 13px; }

  /* Services */
  .service-big { min-height: 320px; }
  .service-big-info { padding: 24px; }
  .service-big-info h3 { font-size: 22px; }
  .service-big-info p { font-size: 13px; }
  .service-small { padding: 22px; min-height: auto; }
  .service-small h3 { font-size: 16px; }
  .service-small p { font-size: 13px; }
  .service-list li { font-size: 12px; padding-left: 16px; }
  .service-num { padding-bottom: 20px; }

  /* Contact */
  .contact-form { padding: 24px 20px !important; border-radius: 14px; }
  .form-head h3 { font-size: 22px; }
  .form-head p { font-size: 13px; }
  .form-group input,
  .form-group textarea { font-size: 14px; padding: 12px 14px; }
  .contact-lead { font-size: 14px !important; margin-bottom: 32px; }
  .cr-val { font-size: 15px; }
  .cr-icon { width: 38px; height: 38px; }
  .cr-icon svg { width: 16px; height: 16px; }

  /* SEO block */
  .seo-title { font-size: 18px !important; margin-bottom: 20px; }
  .seo-content p { font-size: 13px; line-height: 1.6; }
  .seo-tags { font-size: 12px !important; }

  /* Footer — denser */
  .footer { padding: 56px 0 24px; }
  .footer-top {
    gap: 28px !important;
    padding-bottom: 32px !important;
  }
  .footer-col h4 { font-size: 11px; margin-bottom: 14px; }
  .footer-col a, .footer-col span { font-size: 13px; margin-bottom: 8px; }
  .footer-tagline { font-size: 13px; }
  .footer-logo { height: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 11px;
  }

  /* Editorial block */
  .editorial { min-height: 520px; }
  .editorial-quote { font-size: clamp(26px, 8vw, 38px); }
  .editorial-author { font-size: 11px; }

  /* Mobile menu drawer */
  .mobile-menu-inner { padding: 80px 24px 32px; gap: 24px; }
  .mobile-nav-link { font-size: clamp(24px, 6vw, 32px); padding: 14px 0; }
  .mobile-phone-number { font-size: 20px; }

  /* Better tap targets for buttons */
  .btn-primary,
  .btn-cta-desktop,
  .btn-primary-hero,
  .btn-ghost-hero { min-height: 44px; }

  /* Eyebrows smaller */
  .eyebrow { font-size: 10px; margin-bottom: 16px; }
}

/* Extra tiny phones (≤380px) */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 20px; letter-spacing: -0.02em; }
  .panel-name { font-size: clamp(32px, 11vw, 44px); }
  .intro-pillars { grid-template-columns: 1fr !important; }
  .intro-stats { grid-template-columns: 1fr !important; gap: 14px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MAXUS — Комерційний електротранспорт
   ═══════════════════════════════════════════════════════════════ */
.maxus-section {
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  background: var(--bg-dark);
  color: #fff;
}
.maxus-head { margin-bottom: clamp(48px, 7vw, 80px); }
.maxus-head-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 28px;
}
@media (max-width: 860px) { .maxus-head-inner { grid-template-columns: 1fr; gap: 20px; } }
.maxus-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

/* Maxus model grid */
.maxus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1100px) { .maxus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .maxus-grid { grid-template-columns: 1fr; gap: 12px; } }

.maxus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}
.maxus-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--green-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.maxus-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
  position: relative;
}
.maxus-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.maxus-card:hover .maxus-card-img img { transform: scale(1.04); }

.maxus-card-info {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.maxus-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 2px;
}
.maxus-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.maxus-specs-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  flex-wrap: wrap;
}
.maxus-specs-row b { color: #fff; font-size: 14px; }
.maxus-specs-row .sep { color: rgba(255,255,255,0.3); }
.maxus-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  flex: 1;
}
.maxus-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-bright);
  transition: gap 0.25s var(--ease);
}
.maxus-cta svg { width: 14px; height: 14px; }
.maxus-card:hover .maxus-cta { gap: 12px; }

.maxus-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.maxus-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

@media (max-width: 640px) {
  .maxus-section { padding: 64px 0 72px; }
  .maxus-card-info { padding: 16px 16px 20px; }
  .maxus-name { font-size: 22px; }
  .maxus-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   CHARGING SECTION
   ═══════════════════════════════════════════════════════════════ */
.charging-section {
  background: var(--bg-soft);
}
.charging-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
@media (max-width: 900px) {
  .charging-inner { grid-template-columns: 1fr; }
}

.charging-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
}
.charging-photo {
  overflow: hidden;
  position: relative;
}
.charging-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.charging-photo:hover img { transform: scale(1.03); }
@media (max-width: 900px) {
  .charging-left { grid-template-rows: 1fr; height: 320px; }
  .charging-photo-home { display: none; }
}

.charging-right {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.container-narrow { width: 100%; padding: 0 clamp(32px, 5vw, 72px); }

.charging-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.charging-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 480px;
}

.charging-tiers {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 36px;
}
.charging-tier {
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 20px;
  align-items: start;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.charging-tier:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--green-bright);
}
.tier-power {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--green-bright);
  grid-row: span 2;
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  padding-top: 2px;
}
.tier-power span { font-size: 0.45em; color: rgba(255,255,255,0.6); margin-left: 2px; font-weight: 400; }
.tier-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.tier-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

.charging-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}
.cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.cs-item svg { width: 16px; height: 16px; color: var(--green-bright); flex-shrink: 0; }

@media (max-width: 640px) {
  .container-narrow { padding: 0 20px; }
  .charging-title { font-size: clamp(32px, 10vw, 48px); }
  .charging-tier { grid-template-columns: auto 1fr; gap: 4px 14px; padding: 16px 18px; }
  .tier-power { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   EV SERVICE SECTION
   ═══════════════════════════════════════════════════════════════ */
.ev-service-section {
  background: var(--bg);
}
.ev-service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
@media (max-width: 900px) {
  .ev-service-inner { grid-template-columns: 1fr; }
}

.ev-service-photo {
  overflow: hidden;
  position: relative;
  background: #0a0a0a;
}
.ev-service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .ev-service-photo { height: 280px; }
}

.ev-service-content {
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  border-left: 1px solid var(--hairline);
}
@media (max-width: 900px) {
  .ev-service-content { border-left: none; border-top: 1px solid var(--hairline); padding: 56px 0; }
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 22px;
}
.service-lead {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 480px;
}

.service-groups {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}
.service-group {
  display: flex;
  gap: 20px;
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  transition: all 0.3s var(--ease);
}
.service-group:hover {
  background: var(--bg-soft);
  border-color: var(--green);
}
.sg-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 129, 64, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--green);
  transition: all 0.3s var(--ease);
}
.sg-icon svg { width: 20px; height: 20px; }
.service-group:hover .sg-icon { background: var(--green); color: #fff; }
.sg-content h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sg-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.sg-content ul li {
  font-size: 12px;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.sg-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}
@media (max-width: 560px) {
  .sg-content ul { grid-template-columns: 1fr; }
}

.service-badge-soon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(12, 129, 64, 0.06);
  border: 1px solid rgba(12, 129, 64, 0.2);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.5;
}
.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--green-bright);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.badge-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--green-bright);
  opacity: 0.25;
  animation: pulse 2s ease-out infinite;
}

@media (max-width: 640px) {
  .service-title { font-size: clamp(30px, 9vw, 42px); }
  .service-group { padding: 16px 16px; gap: 14px; }
  .sg-icon { width: 36px; height: 36px; }
  .sg-icon svg { width: 16px; height: 16px; }
  .service-lead { font-size: 14px; margin-bottom: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   MAXUS · Commercial electric vehicles section
   ═══════════════════════════════════════════════════════════════ */
.maxus-section {
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 12vw, 120px);
  background: var(--bg-dark);
  color: #fff;
}
.maxus-header {
  padding-bottom: clamp(48px, 7vw, 80px);
}
.maxus-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.maxus-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 780px;
}
.maxus-lead strong { color: #fff; }

.maxus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .maxus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .maxus-grid { grid-template-columns: 1fr; gap: 10px; } }

.maxus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.maxus-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.maxus-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.maxus-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.maxus-card:hover .maxus-image img { transform: scale(1.04); }
.maxus-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  padding: 5px 12px;
  border-radius: 100px;
}

.maxus-info {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.maxus-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}
.maxus-name .accent { color: var(--green-bright); }
.maxus-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  flex: 1;
}

.maxus-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 18px;
}
.mx-spec { display: flex; flex-direction: column; gap: 3px; }
.mx-spec span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.mx-spec em {
  font-style: normal;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.maxus-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-bright);
  letter-spacing: 0.03em;
  transition: color 0.2s var(--ease);
}
.maxus-cta:hover { color: #fff; }

.maxus-footer-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 40px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.maxus-footer-note > div { flex: 1; }
.maxus-footer-note p { margin: 0; }
.maxus-note-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12, 129, 64, 0.15);
  border-radius: 50%;
  color: var(--green-bright);
}
.maxus-note-icon svg { width: 20px; height: 20px; }
.maxus-footer-note p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.maxus-footer-note a { color: var(--green-bright); text-decoration: underline; text-underline-offset: 3px; }
.maxus-footer-note a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   CHARGING SECTION · Sell, install & charge
   ═══════════════════════════════════════════════════════════════ */
.charging-section {
  background: var(--bg-soft);
}

.charging-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
@media (max-width: 768px) {
  .charging-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.charging-hero-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.charging-hero-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.charging-hero-img:hover img { transform: scale(1.04); }
.charging-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.65) 100%);
}
.charging-hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 36px 40px;
  color: #fff;
}
@media (max-width: 640px) { .charging-hero-text { padding: 24px 20px; } }
.charging-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 12px 0 14px;
}
.charging-hero-text p {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 420px;
}

.charging-types {
  padding: clamp(64px, 10vw, 120px) 0;
}
.charging-type-head {
  max-width: 760px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.charging-type-lead {
  margin-top: 20px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text-dim);
}

.ctype-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .ctype-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ctype-grid { grid-template-columns: 1fr; } }

.ctype-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s var(--ease);
}
.ctype-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.ctype-cta {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.ctype-cta:hover {
  background: var(--ink-soft);
  border-color: var(--green);
}

.ctype-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12, 129, 64, 0.08);
  border-radius: 12px;
  color: var(--green);
  margin-bottom: 4px;
}
.ctype-icon svg { width: 22px; height: 22px; }
.ctype-icon-green { background: var(--green); color: #fff; }

.ctype-power {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.ctype-power span {
  font-size: 0.5em;
  color: var(--green);
  margin-left: 3px;
  font-weight: 500;
}
.ctype-cta .ctype-power { color: #fff; }
.ctype-cta .ctype-power span { color: var(--green-bright); }

.ctype-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ctype-cta h3 { color: #fff; }
.ctype-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  flex: 1;
}
.ctype-cta p { color: rgba(255,255,255,0.75); }

.ctype-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}
.ctype-list li {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
}
.ctype-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* Mobile adjustments for new sections */
@media (max-width: 640px) {
  .maxus-grid { grid-template-columns: 1fr; }
  .maxus-card { flex-direction: row; border-radius: 14px; }
  .maxus-image {
    width: 120px;
    min-width: 120px;
    aspect-ratio: auto;
    height: 100%;
    flex-shrink: 0;
  }
  .maxus-info { padding: 16px 16px 18px; }
  .maxus-specs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mx-spec span { font-size: 13px; }
  .mx-spec em { font-size: 9px; }
  .maxus-name { font-size: 16px; }
  .maxus-desc { font-size: 12px; margin-bottom: 12px; }
  .charging-types { padding: 48px 0; }
  .ctype-grid { grid-template-columns: 1fr; gap: 10px; }
  .ctype-card { padding: 22px 20px 24px; }
  .ctype-power { font-size: 28px; }
}

/* ─── HERO SLIDE BADGE (bottom-right info card) ────────────────── */
.hero-slide-badge {
  position: absolute;
  bottom: 110px;
  right: 32px;
  z-index: 3;
  text-align: right;
  color: #fff;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  filter: blur(4px);
  pointer-events: none;
}
.hero-slide.active .hero-slide-badge {
  animation: slideInfoIn 1s var(--ease) 0.5s forwards;
}

.hs-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.hs-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 14px;
}
.hs-model {
  color: var(--green-bright);
  font-style: italic;
}

.hs-specs {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  justify-content: flex-end;
}
.hs-spec {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.hs-spec-val {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
}
.hs-spec-unit {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-slide-badge {
    bottom: 104px;
    right: 16px;
  }
  .hs-name { font-size: clamp(22px, 6vw, 36px); }
  .hs-spec-val { font-size: 18px; }
}
@media (max-width: 640px) {
  /* On small phones show badge or hide - keep but smaller */
  .hero-slide-badge {
    right: 12px;
    bottom: 95px;
  }
  .hs-eyebrow { display: none; }
  .hs-name { font-size: clamp(20px, 6vw, 32px); margin-bottom: 8px; }
  .hs-specs { gap: 10px; }
  .hs-spec-val { font-size: 16px; }
  .hs-spec-unit { font-size: 9px; }
}

/* ─── HERO NEW LAYOUT ───────────────────────────────────────────── */
.hero-sub-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.hero-tagline-line {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  text-align: center;
  margin: 0;
}
.hero-tagline-line b { color: #fff; font-weight: 600; }
.hero-tagline-line--dim { color: rgba(255,255,255,0.62); font-size: clamp(12px, 1vw, 14px); }

@media (max-width: 640px) {
  .hero-sub-block { gap: 5px; margin-bottom: 18px; }
  .hero-tagline-line { font-size: 12px; }
  .hero-tagline-line--dim { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════
   POPUP MODALS — Three types (car / charging / commercial)
   ═══════════════════════════════════════════════════════════════ */
.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.popup-modal.open {
  display: flex;
  animation: popupFadeIn 0.25s ease;
}
@keyframes popupFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
  cursor: pointer;
}

.popup-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  animation: popupSlideUp 0.35s var(--ease);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
@keyframes popupSlideUp {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.popup-close:hover { background: #fff; transform: rotate(90deg); }
.popup-close svg { width: 16px; height: 16px; }

.popup-body {
  padding: 36px 36px 32px;
}
@media (max-width: 520px) { .popup-body { padding: 28px 22px 24px; } }

.popup-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 18px;
}
.popup-icon svg { width: 26px; height: 26px; }
.popup-icon--green { background: rgba(12, 129, 64, 0.1); color: var(--green); }
.popup-icon--dark { background: var(--bg-soft); color: var(--ink); }

.popup-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.popup-subtitle {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* Popup form */
.popup-form { display: flex; flex-direction: column; gap: 14px; }

.popup-form-group { display: flex; flex-direction: column; gap: 6px; }
.popup-form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.popup-form-group input,
.popup-form-group select,
.popup-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--hairline-strong);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.popup-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235a5a5a' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 36px;
  cursor: pointer;
}
.popup-form-group input:focus,
.popup-form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(12, 129, 64, 0.12);
  background: #fff;
}
.popup-form-group input::placeholder { color: var(--text-mute); }

.popup-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 4px;
}
.popup-submit:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12, 129, 64, 0.35);
}
.popup-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.popup-submit svg { width: 16px; height: 16px; transition: transform 0.3s; }
.popup-submit:not(:disabled):hover svg { transform: translateX(4px); }

.popup-success {
  text-align: center;
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  min-height: 20px;
  display: none;
}
.popup-success.visible { display: block; }

/* Sending state */
.popup-form.sending .popup-submit span::after {
  content: '...';
  animation: dots 1s steps(3, end) infinite;
}
@keyframes dots {
  0%, 20% { content: '.'; }
  40%      { content: '..'; }
  60%      { content: '...'; }
}
