/* ==========================================================================
   Solarvanta Energy — bento-tech / premium-minimal design system.
   Soft. Spacious. Quietly young. Vercel/Linear/Apple-store vibe.
   Space Grotesk (display) + Inter (body) + JetBrains Mono (micro-labels).
   Sentence-case. Soft pastel shadows. Bento variable-size tiles.
   ========================================================================== */

:root {
  /* — surfaces — */
  --bg: #ffffff;
  --bg-soft: #f6f5f1;          /* warm off-white cream */
  --bg-mute: #ecebe5;
  --bg-cream: #faf8f4;
  --bg-dark: #0b0f0d;          /* near-pure black */
  --bg-dark-2: #14181a;

  /* — text — */
  --ink: #0b0f0d;
  --ink-2: #383d3f;
  --ink-3: #71777b;
  --ink-4: #9b9fa1;
  --ink-on-dark: #ffffff;

  /* — lines — */
  --line: #ececea;
  --line-2: #f3f2ee;
  --line-strong: #d8d7d2;

  /* — accents — */
  --accent: #16855f;           /* emerald (solarvanta solar identity) */
  --accent-hover: #0d6c4a;
  --accent-deep: #0b5a3d;
  --accent-soft: #ecf5f0;
  --accent-ink: #ffffff;

  /* — solar (warm secondary) — */
  --solar: #f5a623;            /* refined warm amber */
  --solar-deep: #d88905;
  --solar-soft: #fdf4e3;
  --solar-ink: #2e1d00;

  /* — sky (soft tech blue, gentle accent for badges) — */
  --sky: #4a8bf0;
  --sky-soft: #eaf1fc;

  --warn: #d4322a;
  --warn-soft: #fce9e7;
  --ok: #16855f;
  --ok-soft: #ecf5f0;

  /* — typography — */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", "IBM Plex Mono", monospace;

  /* — radii / shadows — soft, premium — */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(11, 15, 13, 0.04);
  --shadow: 0 6px 24px rgba(11, 15, 13, 0.06), 0 1px 3px rgba(11, 15, 13, 0.04);
  --shadow-lift: 0 18px 48px rgba(11, 15, 13, 0.08), 0 2px 6px rgba(11, 15, 13, 0.04);
  --shadow-lg: 0 32px 80px rgba(11, 15, 13, 0.12), 0 4px 10px rgba(11, 15, 13, 0.06);

  /* — layout — */
  --wrap: min(1280px, 100% - 32px);
  --wrap-narrow: min(960px, 100% - 32px);
  --header-h: 64px;

  /* — transitions — */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

/* — reset — */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--accent); color: white; }

/* — typography — sentence case, geometric sans, tight tracking — */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6.4vw, 72px); font-weight: 700; letter-spacing: -0.04em; }
h2 { font-size: clamp(28px, 3.8vw, 44px); letter-spacing: -0.03em; }
h3 { font-size: clamp(17px, 2vw, 21px); letter-spacing: -0.015em; }
h4 { font-size: 15px; letter-spacing: -0.01em; }
p { margin: 0 0 1em; font-family: var(--font-body); color: var(--ink-2); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.muted { color: var(--ink-3); }

/* — containers — */
.container { width: var(--wrap); margin-inline: auto; }
.container-narrow { width: var(--wrap-narrow); margin-inline: auto; }

/* — buttons — soft pill, sentence case — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
              color 0.18s var(--ease), transform 0.18s var(--ease),
              box-shadow 0.2s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: var(--ink-on-dark);
}
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(22, 133, 95, 0.22); }
.btn-solar {
  background: var(--solar);
  color: var(--solar-ink);
}
.btn-solar:hover { background: var(--solar-deep); color: var(--solar-ink); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(245, 166, 35, 0.22); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--ink-on-dark); }
.btn-dark:hover { background: var(--ink-2); }
.btn-warn { background: var(--warn); color: white; }
.btn-warn:hover { filter: brightness(0.95); }
.btn-link {
  padding: 0; background: none; color: var(--ink); border: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 0;
}
.btn-link:hover { color: var(--accent); }
.btn-link-dark { color: rgba(255, 255, 255, 0.85); }
.btn-link-dark:hover { color: var(--solar); }
.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.40);
  color: white;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 15.5px; }
.btn-xl { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }
/* keep .btn-lime alias for any legacy refs — renders as solar */
.btn-lime { background: var(--solar); color: var(--solar-ink); }
.btn-lime:hover { background: var(--solar-deep); transform: translateY(-1px); }

/* — inputs — */
.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 15px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%230b0f0d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 15, 13, 0.10);
}
.textarea { min-height: 96px; resize: vertical; }
.field { display: block; margin-bottom: 14px; }
.field-label { display: block; font-size: 13.5px; color: var(--ink-2); margin-bottom: 6px; font-weight: 500; }
.field-error { color: var(--warn); font-size: 12.5px; margin-top: 4px; }
.field-help { color: var(--ink-3); font-size: 12.5px; margin-top: 4px; }

.radio-row, .checkbox-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; margin-bottom: 8px; transition: border-color 0.15s, background 0.15s; }
.radio-row:hover, .checkbox-row:hover { border-color: var(--line-strong); }
.radio-row input, .checkbox-row input { accent-color: var(--ink); width: 18px; height: 18px; }
.radio-row.checked, .checkbox-row.checked { border-color: var(--ink); background: var(--bg-soft); }

/* — installment sub-selectors (term + bank) — */
.installment-sub { margin: -2px 0 12px; padding: 14px 16px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); background: var(--accent-soft); }
.installment-sub-title { font-size: 12px; font-weight: 700; color: var(--ink-2); margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.installment-sub-title:not(:first-child) { margin-top: 14px; }
.pay-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg, #fff); color: var(--ink); font-size: 14px; font-weight: 500; cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s; font-family: inherit; line-height: 1.2; }
.pay-chip:hover { border-color: var(--ink); }
.pay-chip.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.pay-chip.bank-pay-chip { padding: 4px 14px 4px 4px; }
.pay-chip.bank-pay-chip img,
.bank-icon { display: block; width: 28px; height: 28px; border-radius: 6px; object-fit: contain; flex-shrink: 0; background: transparent; }
.pay-chip.bank-pay-chip img[src*="mono"],
.bank-icon[src*="mono"] { border-radius: 50%; }

/* — chips/badges — soft rounded — */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  font-family: var(--font-body);
}
.chip-warn { background: var(--warn-soft); color: var(--warn); border-color: transparent; }
.chip-ok { background: var(--ok-soft); color: var(--ok); border-color: transparent; }
.chip-accent { background: var(--accent-soft); color: var(--accent-deep); border-color: transparent; font-weight: 600; }
.chip-ink { background: var(--ink); color: var(--ink-on-dark); border-color: transparent; }
.chip-solar {
  background: var(--solar-soft);
  color: var(--solar-deep);
  border-color: transparent;
  font-weight: 600;
}
.chip-sky { background: var(--sky-soft); color: var(--sky); border-color: transparent; font-weight: 600; }
.chip-hit {
  background: var(--solar);
  color: var(--solar-ink);
  border-color: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.01em;
  padding: 4px 12px;
}
.chip-lime { background: var(--solar); color: var(--solar-ink); }

/* — cards / placeholders — */
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.card-flat { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 22px; }

.ph {
  background: linear-gradient(135deg, var(--bg-mute) 25%, var(--bg-soft) 50%, var(--bg-mute) 75%);
  background-size: 200% 200%;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.03));
}
.ph-aspect-1 { aspect-ratio: 1 / 1; }
.ph-aspect-43 { aspect-ratio: 4 / 3; }
.ph-aspect-169 { aspect-ratio: 16 / 9; }

/* ==========================================================================
   HEADER — soft, calm, sticky compact
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

/* — Row 0: subtle energy ticker — */
.energy-ticker {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  height: 28px;
  transition: height 0.28s var(--ease), opacity 0.2s var(--ease);
}
.energy-ticker::before,
.energy-ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.energy-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-dark), transparent); }
.energy-ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg-dark), transparent); }
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  height: 100%;
  padding-left: 36px;
  animation: ticker-scroll 48s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}
.ticker-item svg { width: 12px; height: 12px; opacity: 0.55; color: var(--solar); }
.ticker-dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  margin-left: 10px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.header-utility {
  background: var(--bg-soft);
  color: var(--ink-2);
  font-size: 12.5px;
  border-bottom: 1px solid var(--line);
  transition: height 0.25s var(--ease), opacity 0.2s var(--ease);
}
.header-utility-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px;
  transition: height 0.25s var(--ease);
}

.header-utility .left, .header-utility .right { display: flex; align-items: center; gap: 22px; }
.header-utility a { color: var(--ink-2); transition: color 0.15s; }
.header-utility a:hover { color: var(--ink); }
.phone-link { display: inline-flex; align-items: center; gap: 6px; }
.phone-link svg { flex-shrink: 0; }
.header-utility .phone-link { font-weight: 600; color: var(--ink); }
.header-utility .phone-link:hover { color: var(--accent); }

.utility-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-3);
}
.utility-status-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: status-pulse 2.4s ease-out infinite;
}
@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 640px) {
  .header-utility .right { display: none; }
  .energy-ticker { height: 24px; }
  .ticker-item { font-size: 10.5px; }
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  transition: padding 0.22s var(--ease);
}

.brand-logo {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--ink);
  position: relative;
}
.brand-text {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.brand-dot {
  width: 6px; height: 6px;
  background: var(--solar);
  border-radius: 50%;
  display: inline-block;
  margin-left: 3px;
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.55);
  animation: brand-dot-pulse 3.4s ease-in-out infinite;
}
@keyframes brand-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.45); opacity: 0.7; }
}

.brand-mark {
  width: 40px; height: 40px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 4px 12px rgba(245, 166, 35, 0.18);
  transition: width 0.22s var(--ease), height 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.brand-mark svg { position: relative; z-index: 1; }

.header-search {
  position: relative;
  max-width: 560px;
  width: 100%;
  justify-self: center;
  transition: max-width 0.22s var(--ease);
}
.header-search input {
  width: 100%;
  height: 44px;
  padding: 0 50px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  font-size: 14.5px;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, height 0.22s var(--ease);
}
.header-search input:focus {
  background: var(--bg);
  border-color: var(--ink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 15, 13, 0.08);
}
.header-search-btn {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.header-search-btn:hover { background: var(--ink-2); transform: translateY(-50%) scale(1.04); }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.icon-btn:hover { background: var(--bg-soft); color: var(--ink); }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  background: var(--ink); color: white;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.icon-btn-label { display: none; }
@media (min-width: 1024px) {
  .icon-btn { width: auto; padding: 8px 14px; gap: 8px; }
  .icon-btn-label { display: inline; font-size: 13.5px; font-weight: 500; }
}

.callback-cta { display: none; }
@media (min-width: 768px) {
  .callback-cta { display: inline-flex; }
}

.header-nav {
  background: var(--bg);
  border-top: 1px solid var(--line);
  transition: padding 0.22s var(--ease);
}
.header-nav-inner {
  display: flex;
  align-items: stretch;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav-inner::-webkit-scrollbar { display: none; }
.header-nav a {
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  white-space: nowrap;
  position: relative;
  transition: color 0.15s, padding 0.22s var(--ease);
}
.header-nav a:hover { color: var(--ink); }
.header-nav a.active { color: var(--ink); font-weight: 600; }
.header-nav a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: -1px;
  height: 2px; background: var(--ink); border-radius: 2px;
}
.header-nav a.hit::before { display: none; }

/* mobile burger */
.mobile-toggle { display: inline-flex; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-drawer {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11, 15, 13, 0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--bg);
  padding: 22px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-nav-link {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  margin-top: 96px;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  /* soft sun-glow halo, no shapes — premium minimal */
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: white;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: -0.01em;
  font-weight: 600;
  text-transform: none;
  font-family: var(--font-display);
}
.site-footer a { color: rgba(255, 255, 255, 0.65); transition: color 0.15s; }
.site-footer a:hover { color: white; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: 14px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 64px 0 36px;
  position: relative;
}
@media (min-width: 768px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-cols { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(255, 255, 255, 0.55); font-size: 13.5px; line-height: 1.65; max-width: 38ch; }
.footer-contact a { display: block; padding: 4px 0; font-weight: 500; color: white; }
.footer-contact a:hover { color: var(--solar); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.payment-icons { display: flex; gap: 8px; }
.payment-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}

/* ==========================================================================
   HERO — light cream, single big product, inline stats
   ========================================================================== */

.hero {
  background:
    radial-gradient(ellipse 70% 80% at 92% 30%, rgba(245, 166, 35, 0.22), transparent 55%),
    radial-gradient(ellipse 90% 70% at -8% 95%, rgba(22, 133, 95, 0.10), transparent 60%),
    var(--bg-cream);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px 28px 40px;
  margin: 24px 0 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.05fr 1fr;
    padding: 72px 64px 64px;
    gap: 56px;
  }
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-pill-dot {
  width: 8px; height: 8px;
  background: var(--solar);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
  animation: hero-pill-pulse 2.4s ease-out infinite;
}
@keyframes hero-pill-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

.hero h1 {
  color: var(--ink);
  max-width: 14ch;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.hero h1 .accent-word {
  background: linear-gradient(135deg, var(--solar-deep) 0%, var(--solar) 60%, #ffc66b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
  font-weight: 700;
}
.hero .lede {
  color: var(--ink-2);
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 48ch;
  line-height: 1.55;
  margin-top: 18px;
  font-weight: 400;
  font-family: var(--font-body);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-ctas .btn-solar { color: var(--solar-ink); }
.hero-ctas .btn-primary { background: var(--ink); color: white; }
.hero-ctas .btn-primary:hover { background: var(--ink-2); }

/* HERO META — INLINE stats row with subtle separators */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 22px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: none;
}
.hero-meta .item {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 7px;
  position: relative;
}
.hero-meta .item + .item::before {
  content: "·";
  color: var(--ink-4);
  margin-right: 12px;
  margin-left: -12px;
  font-size: 14px;
  align-self: center;
}
.hero-meta .n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1;
}
.hero-meta .n sup {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--solar-deep);
  margin-left: 1px;
  vertical-align: super;
  letter-spacing: 0;
  font-family: var(--font-mono);
}
.hero-meta .l {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--ink-3);
  font-weight: 400;
}

@media (max-width: 640px) {
  .hero-meta .n { font-size: 18px; }
  .hero-meta .l { font-size: 11px; }
  .hero-meta { gap: 8px 16px; }
  .hero-meta .item + .item::before { margin-right: 8px; margin-left: -8px; }
}

/* HERO VISUAL — single big product feature */
.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.hero-iso-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 55% 50%, rgba(245, 166, 35, 0.22), transparent 65%);
  z-index: 0;
  pointer-events: none;
  filter: blur(32px);
}

.hero-feature {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  box-shadow:
    0 32px 64px rgba(11, 15, 13, 0.10),
    0 4px 12px rgba(11, 15, 13, 0.04);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.hero-feature:hover { border-color: var(--line-strong); }
.hero-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.10), transparent 55%);
  pointer-events: none;
}
.hero-feature:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 80px rgba(11, 15, 13, 0.14),
    0 6px 16px rgba(11, 15, 13, 0.06);
}
.hero-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.hero-feature-brand {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.hero-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  background: var(--solar);
  color: var(--solar-ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
}
.hero-feature-img-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  z-index: 1;
}
.hero-feature-img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.hero-feature:hover .hero-feature-img { transform: scale(1.04); }
.hero-feature-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.hero-feature-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
  flex: 1;
}
.hero-feature-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  white-space: nowrap;
}

/* legacy iso-grid kept hidden — JSX may still try to render via HeroTileGrid */
.hero-iso-grid { display: none; }

@media (max-width: 768px) {
  .hero {
    padding: 32px 20px 28px;
    margin: 16px 0 12px;
    gap: 28px;
    border-radius: var(--radius-lg);
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 52px);
    max-width: 16ch;
    letter-spacing: -0.035em;
  }
  .hero .lede {
    font-size: 14.5px;
    margin-top: 14px;
    max-width: 38ch;
  }
  .hero-ctas { margin-top: 20px; }
  .hero-ctas .btn-lg { padding: 12px 22px; font-size: 14.5px; }
  .hero-meta {
    margin-top: 22px;
    padding-top: 18px;
    gap: 8px 16px;
  }
  .hero-meta .n { font-size: 18px; }
  .hero-meta .l { font-size: 11px; }
  .hero-visual { min-height: 280px; }
  .hero-feature {
    max-width: 340px;
    aspect-ratio: 4 / 5;
    padding: 20px 20px 16px;
  }
  .hero-feature-img { max-height: 220px; }
  .hero-feature-name { font-size: 13px; }
  .hero-feature-price { font-size: 17px; }
}

@media (max-width: 420px) {
  .hero { padding: 26px 16px 22px; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .hero-meta .item + .item::before { display: none; }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
  }
  .hero-meta .item { flex-direction: column; gap: 2px; align-items: flex-start; }
  .hero-feature { max-width: 100%; }
}

/* ==========================================================================
   SECTIONS / ZONES
   ========================================================================== */

.section { margin: 80px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head .titles { display: flex; flex-direction: column; gap: 8px; }
.section-head .titles h2 { margin: 0; }
.section-head .titles .eyebrow { color: var(--ink-3); }

.zone {
  padding: 72px 0;
  margin: 64px 0;
  position: relative;
}
.zone-dark {
  background: var(--bg-cream);
  color: var(--ink);
  border-radius: var(--radius-xl);
  margin-left: 16px;
  margin-right: 16px;
}
.zone-dark::before { display: none; }
.zone-dark .container { position: relative; z-index: 1; }
.section-head-dark .titles h2 { color: var(--ink); }
.section-head-dark .titles .eyebrow { color: var(--accent); }

/* ==========================================================================
   PARTNERS STRIP
   ========================================================================== */

.partners-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 0 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 24px 0 40px;
}
@media (min-width: 768px) {
  .partners-strip { grid-template-columns: auto 1fr; gap: 32px; }
}
.partners-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  padding-left: 4px;
  position: relative;
}
.partners-label::after {
  content: "";
  display: block;
  width: 24px; height: 1px;
  background: var(--ink);
  margin-top: 6px;
}
.partners-track {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  overflow: hidden;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--ink-3);
  opacity: 0.6;
  white-space: nowrap;
  transition: opacity 0.18s var(--ease), color 0.18s var(--ease);
}
.partner-name:hover { opacity: 1; color: var(--ink); }

/* ==========================================================================
   WIZARD (Як підібрати систему)
   ========================================================================== */

.wizard-section {
  position: relative;
  padding: 56px 28px;
  margin: 80px 0 64px;
  background: var(--bg-cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.wizard-section::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.18), transparent 60%);
  pointer-events: none;
}
.wizard-section > * { position: relative; z-index: 1; }
.wizard-section .section-head { margin-bottom: 32px; }
.wizard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .wizard-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.wizard-step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.wizard-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.wizard-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.wizard-step h3 {
  font-size: 19px;
  margin-bottom: 8px;
  line-height: 1.15;
}
.wizard-step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.wizard-arrow {
  display: none;
  position: absolute;
  right: -14px;
  top: 38px;
  width: 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--ink-3);
  opacity: 0.6;
  z-index: 2;
}
@media (min-width: 768px) {
  .wizard-step:not(:last-child) .wizard-arrow { display: block; }
}
.wizard-cta-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.wizard-cta-note {
  font-size: 13px;
  color: var(--ink-3);
}

/* ==========================================================================
   HIT CATEGORIES — soft split-card on light cream zone
   ========================================================================== */

.hit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) { .hit-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.hit-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  font: inherit;
  color: inherit;
}
@media (min-width: 560px) {
  .hit-card {
    grid-template-columns: 5fr 7fr;
    align-items: stretch;
  }
}
.hit-card::before {
  content: "Хіт";
  position: absolute;
  top: 16px; right: 16px;
  background: var(--solar);
  color: var(--solar-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.005em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 3;
}
.hit-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lift);
}

/* image half */
.hit-img-wrap {
  position: relative;
  background:
    radial-gradient(circle at 70% 30%, rgba(245, 166, 35, 0.14), transparent 55%),
    linear-gradient(135deg, var(--bg-cream) 0%, var(--accent-soft) 100%);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 220px;
}
.hit-img-wrap::after { display: none; }
.hit-card .hit-img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease);
}
.hit-card:hover .hit-img { transform: scale(1.05); }

/* content half */
.hit-card .hit-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 28px 26px;
  background: var(--bg);
  position: relative;
}
.hit-card .hit-content::before { display: none; }
.hit-card .hit-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.hit-card h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 4px 0 0;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.hit-card .hit-blurb {
  color: var(--ink-2);
  font-size: 14px;
  margin: 6px 0 0;
  line-height: 1.55;
}
.hit-card .hit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--ink-3);
}
.hit-card .hit-meta strong { color: var(--ink); font-weight: 600; }
.hit-card .hit-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: gap 0.2s, color 0.2s;
}
.hit-card:hover .hit-cta { gap: 12px; color: var(--accent); }

/* ==========================================================================
   CATEGORY GRID — bento variable
   ========================================================================== */

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; } }
.cat-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.cat-card .ph { aspect-ratio: 4 / 3; border-radius: var(--radius-sm); }
.cat-card h3 {
  font-size: 16px;
  margin-top: 4px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cat-card .meta {
  font-size: 11.5px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0;
  font-weight: 400;
}

/* ==========================================================================
   BENEFITS — soft tile grid
   ========================================================================== */

.benefit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .benefit-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefit-row { grid-template-columns: repeat(4, 1fr); } }
.benefit {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 26px 22px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.benefit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.benefit-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-4);
  font-weight: 400;
}
.benefit .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit h4 {
  font-size: 15px;
  margin: 4px 0 6px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.benefit p { font-size: 13px; color: var(--ink-3); margin: 0; line-height: 1.55; }

/* ==========================================================================
   PRODUCT CARD — clean, generous whitespace, big photography
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  position: relative;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card-hit {
  border-color: var(--line);
  background: linear-gradient(180deg, var(--solar-soft) 0%, var(--bg) 30%);
}
.product-card-hit::before { display: none; }
.product-card-hit:hover {
  border-color: var(--solar);
  box-shadow: 0 18px 44px rgba(245, 166, 35, 0.14), 0 2px 6px rgba(245, 166, 35, 0.08);
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  isolation: isolate;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.36s var(--ease);
  will-change: transform;
}
.product-card:hover .card-img { transform: scale(1.05); }
.card-media .ph { aspect-ratio: 1 / 1; margin: 0; height: 100%; border-radius: 0; }

.card-quick-add {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), background 0.18s;
  box-shadow: 0 8px 20px rgba(11, 15, 13, 0.28);
  z-index: 2;
}
.card-quick-add svg { width: 16px; height: 16px; }
.card-quick-add:hover { background: var(--accent); }
.product-card:hover .card-quick-add,
.card-quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.stock-dot {
  position: absolute;
  top: 12px; right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px 4px 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0;
  color: var(--ok);
  font-weight: 500;
  z-index: 2;
  border: 1px solid rgba(22, 133, 95, 0.18);
}
.stock-dot-pulse {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: stock-pulse 2s ease-out infinite;
}
@keyframes stock-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.product-card .brand {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}
.product-card .name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
  min-height: 38px;
  letter-spacing: -0.015em;
}
.product-card .name a { color: var(--ink); }
.product-card .name a:hover { color: var(--accent); }

/* Spec strip — mono tags */
.product-specs-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0;
  line-height: 1.2;
  font-weight: 400;
}
.product-specs-strip .spec-val {
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink-2);
}
.product-specs-strip .spec-sep {
  display: inline-block;
  width: 1px;
  height: 11px;
  background: var(--line-strong);
}
.product-card-hit .product-specs-strip {
  border-color: rgba(245, 166, 35, 0.32);
}

.product-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.product-card .price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.035em;
}
.product-card-hit .price { color: var(--ink); }
.product-card .price-old { font-size: 13px; color: var(--ink-3); text-decoration: line-through; }
.product-card .card-actions { display: flex; gap: 6px; }
.product-card .card-actions .btn { flex: 1; }
.card-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 3;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  margin: 22px auto;
  letter-spacing: -0.005em;
}
.breadcrumbs a { color: var(--ink-3); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   PLP
   ========================================================================== */

.plp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .plp-layout { grid-template-columns: 260px 1fr; gap: 36px; }
}
.plp-filters { display: flex; flex-direction: column; gap: 22px; }
.filter-group { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 {
  font-size: 14px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); padding: 4px 0; cursor: pointer; }
.filter-group label input { accent-color: var(--ink); }
.filter-group .price-inputs { display: flex; gap: 8px; }
.filter-group .price-inputs input { padding: 8px 10px; font-size: 13px; }

.plp-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.plp-head .count {
  color: var(--ink-3);
  font-size: 13px;
  font-family: var(--font-mono);
}
.plp-empty {
  padding: 56px;
  text-align: center;
  color: var(--ink-3);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
}

.plp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--solar);
  color: var(--solar-ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}

/* mobile filter drawer */
.filter-toggle-mobile { display: inline-flex; }
@media (min-width: 1024px) { .filter-toggle-mobile { display: none; } }
.filter-drawer { position: fixed; inset: 0; z-index: 60; background: rgba(11, 15, 13, 0.55); opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.filter-drawer.open { opacity: 1; pointer-events: auto; }
.filter-drawer .panel {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--bg);
  padding: 22px;
  transform: translateX(-100%);
  transition: transform 0.25s;
  overflow-y: auto;
}
.filter-drawer.open .panel { transform: translateX(0); }

/* ==========================================================================
   PDP
   ========================================================================== */

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .pdp-layout { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pdp-layout { grid-template-columns: 1.1fr 1fr; gap: 56px; } }

.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-gallery .main { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); background: var(--bg-soft); }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pdp-thumbs .ph { aspect-ratio: 1 / 1; cursor: pointer; transition: outline 0.15s; }
.pdp-thumbs .ph.active { outline: 2px solid var(--ink); outline-offset: 2px; }

.pdp-info h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.pdp-info .brand {
  font-family: var(--font-mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  margin-bottom: 10px;
  font-weight: 500;
}
.pdp-price-row { display: flex; align-items: baseline; gap: 14px; margin: 20px 0; flex-wrap: wrap; }
.pdp-price {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 44px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.045em;
}
.pdp-price-old { font-size: 17px; color: var(--ink-3); text-decoration: line-through; }
.pdp-price-save {
  background: var(--solar);
  color: var(--solar-ink);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.pdp-stock {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ok);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 18px;
}
.pdp-stock-dot { width: 8px; height: 8px; background: var(--ok); border-radius: 50%; box-shadow: 0 0 0 4px rgba(22, 133, 95, 0.16); }
.pdp-actions { display: flex; gap: 10px; margin: 18px 0 22px; flex-wrap: wrap; }
.pdp-actions .btn { flex: 1; min-width: 160px; }

.pdp-shipping {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 22px;
  background: var(--bg-soft);
}
.pdp-shipping ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pdp-shipping li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.pdp-shipping .icon-wrap { color: var(--ink); flex-shrink: 0; }

.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table th, .specs-table td { padding: 13px 0; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.specs-table th { color: var(--ink-3); font-weight: 500; width: 42%; font-size: 13.5px; }
.specs-table td { font-family: var(--font-mono); color: var(--ink); font-size: 13.5px; }

.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.qty-control button { padding: 10px 14px; transition: background 0.15s; font-weight: 500; }
.qty-control button:hover { background: var(--bg-soft); }
.qty-control input { width: 44px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); padding: 10px 4px; font-weight: 500; }

/* ==========================================================================
   CART + CHECKOUT
   ========================================================================== */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1fr 360px; gap: 40px; align-items: start; } }

.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
@media (min-width: 640px) { .cart-line { grid-template-columns: 100px 1fr auto auto; } }
.cart-line .ph { aspect-ratio: 1 / 1; width: 80px; }
@media (min-width: 640px) { .cart-line .ph { width: 100px; } }
.cart-line .name { font-size: 14.5px; font-weight: 500; margin-bottom: 4px; letter-spacing: -0.01em; }
.cart-line .meta {
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.cart-line .price-each {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 18px;
  min-width: 110px;
  text-align: right;
  letter-spacing: -0.025em;
}
.cart-line .remove-btn { color: var(--ink-3); font-size: 12.5px; padding: 4px; }
.cart-line .remove-btn:hover { color: var(--warn); }

.cart-summary {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.cart-summary::before { display: none; }
.cart-summary h3 { font-size: 18px; margin-bottom: 18px; letter-spacing: -0.02em; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-2); }
.cart-summary .row.total {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 16px;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.035em;
}
.cart-summary .btn-primary { width: 100%; margin-top: 16px; }

.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

/* — confirmation screen — */
.order-confirm {
  text-align: center;
  padding: 56px 28px;
  background: var(--bg-cream);
  border-radius: var(--radius-xl);
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}
.order-confirm::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.2), transparent 60%);
  pointer-events: none;
}
.order-confirm h1, .order-confirm h2 { color: var(--ink); }
.order-confirm .check {
  width: 72px; height: 72px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  box-shadow: 0 12px 32px rgba(22, 133, 95, 0.32);
}
.order-confirm .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  color: var(--ink);
  margin: 10px 0;
  letter-spacing: -0.045em;
  position: relative; z-index: 1;
}
.order-confirm .callback-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-weight: 500;
  margin: 14px 0 6px;
  font-size: 14px;
  position: relative; z-index: 1;
}
.order-confirm .callback-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
.order-confirm .next-steps { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; position: relative; z-index: 1; }

/* ==========================================================================
   LIVE CHAT WIDGET
   ========================================================================== */

.chat-bubble {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(11, 15, 13, 0.32);
  z-index: 40;
  transition: transform 0.18s var(--ease), background 0.18s;
}
.chat-bubble:hover { transform: scale(1.06); background: var(--ink-2); }
.chat-bubble .dot {
  position: absolute; top: 6px; right: 6px;
  width: 12px; height: 12px;
  background: var(--solar); border: 2px solid white;
  border-radius: 50%;
}
.chat-window {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 132px));
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  z-index: 41;
  overflow: hidden;
  border: 1px solid var(--line);
}
.chat-head { padding: 14px 16px; background: var(--ink); color: white; display: flex; justify-content: space-between; align-items: center; }
.chat-head .title { font-weight: 600; font-size: 14px; letter-spacing: -0.015em; }
.chat-head .sub { font-size: 11.5px; color: rgba(255, 255, 255, 0.65); }
.chat-close { color: rgba(255, 255, 255, 0.7); width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.chat-close:hover { color: white; background: rgba(255, 255, 255, 0.1); }
.chat-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { max-width: 80%; padding: 9px 13px; border-radius: 14px; font-size: 14px; line-height: 1.4; }
.chat-msg.from-visitor { align-self: flex-end; background: var(--ink); color: white; border-bottom-right-radius: 4px; }
.chat-msg.from-operator { align-self: flex-start; background: var(--bg-soft); color: var(--ink); border-bottom-left-radius: 4px; }
.chat-msg.from-bot { align-self: flex-start; background: var(--bg-soft); color: var(--ink-2); font-style: italic; font-size: 13px; }
.chat-input { display: flex; padding: 10px; border-top: 1px solid var(--line); gap: 8px; }
.chat-input input { flex: 1; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 14px; font-size: 14px; background: var(--bg-soft); }
.chat-input input:focus { outline: none; border-color: var(--ink); background: var(--bg); }
.chat-input button { background: var(--ink); color: white; border-radius: 50%; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }

/* ==========================================================================
   TOASTS
   ========================================================================== */

.toast-host {
  position: fixed; left: 0; right: 0; bottom: 90px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
  z-index: 70;
}
.toast {
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  box-shadow: var(--shadow-lift);
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 12px;
  max-width: calc(100vw - 32px);
  animation: toast-in 0.25s var(--ease) both;
}
.toast a, .toast .toast-action {
  color: var(--solar);
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
  font-size: 13px;
}
@keyframes toast-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 18px;
  z-index: 80;
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) { .cookie-banner { grid-template-columns: 1fr auto; align-items: center; } }
.cookie-banner .text { font-size: 13.5px; color: var(--ink-2); }
.cookie-banner .actions { display: flex; gap: 8px; flex-wrap: wrap; }

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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.hidden { display: none; }
@media (max-width: 767px) { .hidden-mobile { display: none; } }
@media (min-width: 768px) { .hidden-desktop { display: none; } }

/* ==========================================================================
   LEGAL PAGES — calm, readable body type
   ========================================================================== */

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 4px;
  line-height: 1.15;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 28px 0 10px;
  line-height: 1.3;
  color: var(--ink);
}
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 18px 0 8px;
  line-height: 1.35;
  color: var(--ink-2);
}
.legal-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-body p { margin: 0 0 12px; }
.legal-body ul, .legal-body ol { margin: 0 0 14px; padding-left: 20px; }
.legal-body li { margin-bottom: 6px; }

/* ==========================================================================
   ACCESSIBILITY — reduced-motion overrides
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none !important; transform: none !important; }
  .hero-iso-tile,
  .hero-iso-grid { transform: none !important; }
  .product-card:hover .card-img { transform: none !important; }
  .brand-dot,
  .brand-mark::after,
  .stock-dot-pulse,
  .utility-status-dot,
  .hero-pill-dot,
  .header-nav a.hit::before {
    animation: none !important;
  }
}
