/*
Theme Name: Canadian Solar Verify
Theme URI: https://www.canadiansolar.com/
Author: Canadian Solar
Author URI: https://www.canadiansolar.com/
Description: Canadian Solar panel serial number verification system, styled as an authenticity-certificate portal — red and black brand palette only. Admin can manage all serial numbers, verify codes, and product details from WordPress dashboard. Includes customer login/register portal.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cs-verify
Tags: solar, verification, custom
*/

/* ==================================================================
   CANADIAN SOLAR VERIFY — "AUTHENTICITY SEAL" DESIGN SYSTEM
   Concept: the page reads like an official security certificate —
   guilloché hairlines, perforated certificate edges, registration
   ticks and a circular wax-seal verification mark. Palette is
   strictly red + black/ink + paper neutrals. No green, no blue,
   no amber anywhere in this file.
   ================================================================== */

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

:root {
  /* ---- brand: red + ink, nothing else ---- */
  --cs-red:        #C8102E;
  --cs-red-bright: #E51E3A;
  --cs-red-deep:   #6E0817;
  --cs-red-wash:   #FBE9EC;   /* faint red tint for paper wells */
  --cs-red-line:   rgba(200,16,46,0.32);

  --cs-ink:        #FFFFFF;  /* primary canvas — white */
  --cs-ink-2:      #F2F2F2;  /* raised surface — light grey */
  --cs-ink-3:      #E8E8E8;  /* hover / nested surface — lighter grey */
  --cs-ink-line:   rgba(0,0,0,0.10);
  --cs-ink-line-soft: rgba(0,0,0,0.05);

  --cs-paper:      #F7F4EE;  /* certificate stock */
  --cs-paper-2:    #ECE7DC;  /* paper well / recessed field */
  --cs-white:      #FFFFFF;

  --cs-text:       #19181A;  /* body text on paper */
  --cs-text-dim:   #5B5953;  /* secondary text on paper */
  --cs-text-faint: #8B887F;

  --cs-on-dark:        #1A1A1A;
  --cs-on-dark-dim:    rgba(26,26,26,0.62);
  --cs-on-dark-faint:  rgba(26,26,26,0.38);

  --cs-radius:   2px;        /* near-square, certificate-stamp corners */
  --cs-radius-lg: 4px;

  --cs-shadow-card: 0 1px 2px rgba(0,0,0,0.06), 0 12px 28px rgba(0,0,0,0.10);
  --cs-shadow-dark: 0 18px 40px rgba(0,0,0,0.45);

  --font-display: 'Big Shoulders', 'Arial Narrow', sans-serif;
  --font-body:    'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cs-paper);
  color: var(--cs-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

a { color: inherit; }

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

/* ---- reusable hairline / texture utilities ---- */

.cs-hairline-dark {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 9px
  );
}

.cs-hairline-red {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(200,16,46,0.16) 0px,
    rgba(200,16,46,0.16) 1px,
    transparent 1px,
    transparent 9px
  );
}

/* corner registration ticks — like print-shop crop marks, used to
   frame "official document" surfaces */
.cs-reg-marks { position: relative; }
.cs-reg-marks::before,
.cs-reg-marks::after,
.cs-reg-marks .cs-reg-tr,
.cs-reg-marks .cs-reg-br {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 3;
  pointer-events: none;
}
.cs-reg-marks::before {
  top: 10px; left: 10px;
  border-top: 2px solid var(--cs-red);
  border-left: 2px solid var(--cs-red);
}
.cs-reg-marks::after {
  bottom: 10px; right: 10px;
  border-bottom: 2px solid var(--cs-red);
  border-right: 2px solid var(--cs-red);
}

/* perforated certificate edge — a row of punched dots */
.cs-perforated {
  height: 13px;
  background-image: radial-gradient(circle at 7px center, var(--cs-paper) 3.5px, transparent 4px);
  background-size: 14px 13px;
  background-repeat: repeat-x;
  background-position: 7px 0;
}
.cs-perforated-dark {
  background-image: radial-gradient(circle at 7px center, var(--cs-ink) 3.5px, transparent 4px);
}

/* ============================================================
   SEAL — the signature element. Concentric rings + checkmark,
   reused across hero / verify success / warranty / footer.
   ============================================================ */
.cs-seal { display: block; flex-shrink: 0; }
.cs-seal-ring-outer  { fill: none; stroke: currentColor; stroke-width: 1.4; }
.cs-seal-ring-inner  { fill: none; stroke: currentColor; stroke-width: 1; stroke-dasharray: 2 3; }
.cs-seal-fill        { fill: currentColor; }

/* ============================================================
   HEADER
   ============================================================ */
.jv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cs-ink-line);
  box-shadow: inset 0 -2px 0 var(--cs-red);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jv-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.jv-header-logo svg, .jv-header-logo img {
  height: 30px;
  width: auto;
 
}

.jv-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jv-header-nav a {
  color: var(--cs-on-dark-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: var(--cs-radius);
  transition: color 0.2s, background 0.2s;
}

.jv-header-nav a:hover {
  color: var(--cs-on-dark);
  background: var(--cs-ink-3);
}

.jv-header-nav .btn-verify-nav {
  background: var(--cs-red);
  color: var(--cs-white) !important;
  border-radius: var(--cs-radius);
  padding: 9px 18px;
  font-weight: 600;
}

.jv-header-nav .btn-verify-nav:hover {
  background: var(--cs-red-bright);
  color: var(--cs-white) !important;
}

.jv-header-nav .btn-login-nav {
  border: 1px solid var(--cs-ink-line);
  color: var(--cs-on-dark-dim);
}

.jv-header-nav .btn-login-nav:hover {
  border-color: var(--cs-red);
  color: var(--cs-on-dark);
  background: var(--cs-ink-3);
}

/* ============================================================
   HAMBURGER — small bracketed stamp button
   ============================================================ */
.jv-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--cs-red);
  padding: 4px;
  border-radius: var(--cs-radius);
  z-index: 1100;
  position: relative;
  transition: background 0.2s;
}
.jv-hamburger:hover { background: var(--cs-ink-3); }
.jv-hamburger.open  { background: var(--cs-red); border-color: var(--cs-red); }
.jv-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cs-red);
  transition: all 0.3s ease;
  transform-origin: center;
}
.jv-hamburger.open span { background: var(--cs-white); }
.jv-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jv-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.jv-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer Overlay */
.jv-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
}
.jv-mobile-overlay.open { display: block; }

/* Mobile Side Drawer */
.jv-mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 268px;
  height: 100vh;
  background: var(--cs-ink);
  border-left: 1px solid var(--cs-ink-line);
  z-index: 1100;
  box-shadow: -4px 0 32px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.jv-mobile-drawer.open { right: 0; }
.jv-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cs-ink-line);
}
.jv-mobile-drawer-header img { height: 26px; width: auto; }
.jv-mobile-drawer-close {
  background: none;
  border: 1px solid var(--cs-ink-line);
  cursor: pointer;
  padding: 4px 10px;
  color: var(--cs-on-dark-dim);
  font-size: 18px;
  line-height: 1;
  border-radius: var(--cs-radius);
}
.jv-mobile-drawer-close:hover { background: var(--cs-ink-3); color: var(--cs-on-dark); }
.jv-mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 14px;
  gap: 6px;
}
.jv-mobile-drawer-nav a {
  display: block;
  color: var(--cs-on-dark-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--cs-radius);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.jv-mobile-drawer-nav a:hover { color: var(--cs-on-dark); background: var(--cs-ink-3); }
.jv-mobile-drawer-nav .btn-drawer-verify {
  background: var(--cs-red);
  color: var(--cs-white) !important;
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
}
.jv-mobile-drawer-nav .btn-drawer-verify:hover { background: var(--cs-red-bright); }
.jv-mobile-drawer-nav .btn-drawer-login {
  border-color: var(--cs-ink-line);
  text-align: center;
}
.jv-mobile-drawer-nav .btn-drawer-login:hover { border-color: var(--cs-red); color: var(--cs-on-dark) !important; }

/* ============================================================
   HERO — full-bleed video, certificate-style overlay content
   ============================================================ */
.jv-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 68px;
  background: var(--cs-ink);
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jv-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.jv-hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

.jv-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

.jv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}

.jv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(200,16,46,0.14);
  border: 1px solid var(--cs-red-line);
  border-radius: 100px;
  padding: 7px 18px 7px 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--cs-on-dark);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.jv-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cs-red-bright);
  animation: jv-pulse 2s infinite;
}

@keyframes jv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.jv-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7.2vw, 88px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--cs-white);
  margin-bottom: 20px;
}

.jv-hero-title span {
  color: var(--cs-red-bright);
}

.jv-hero-sub {
  font-size: clamp(15px, 2.1vw, 17px);
  color: var(--cs-on-dark-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.jv-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cs-red);
  color: var(--cs-white);
  text-decoration: none;
  padding: 16px 30px;
  border-radius: var(--cs-radius);
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(200,16,46,0.35);
}

.jv-hero-btn:hover {
  background: var(--cs-red-bright);
  transform: translateY(-2px);
}

.jv-hero-btn svg { width: 17px; height: 17px; }

.jv-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cs-on-dark-faint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.jv-scroll-hint span {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--cs-red), transparent);
  animation: jv-scrollLine 1.8s infinite;
}

@keyframes jv-scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   BRAND INTRO
   ============================================================ */
.jv-brand-intro {
  background: var(--cs-ink);
  padding: 88px 20px;
  border-bottom: 1px solid var(--cs-ink-line);
  position: relative;
}
.jv-brand-intro-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.jv-brand-logo-wrap { margin-bottom: 22px; }
.jv-brand-logo-big {
  height: 32px;
  width: auto;
 
  opacity: 0.95;
}
.jv-brand-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cs-on-dark);
  line-height: 1.05;
  margin: 0 0 18px;
}
.jv-brand-desc {
  font-size: 15.5px;
  color: var(--cs-on-dark-dim);
  line-height: 1.75;
  margin-bottom: 26px;
}
.jv-brand-desc strong { color: var(--cs-on-dark); font-weight: 600; }
.jv-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.jv-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cs-on-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--cs-radius);
  border: 1px solid var(--cs-ink-line);
}
.jv-brand-pill svg {
  width: 14px !important; height: 14px !important;
  max-width: 14px; max-height: 14px;
  stroke: var(--cs-red-bright);
  flex-shrink: 0;
  display: block;
}
/* Right side: nameplate-style 2x2 grid */
.jv-brand-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cs-ink-line);
  border: 1px solid var(--cs-ink-line);
}
.jv-brand-stat-tile {
  background: var(--cs-ink-2);
  padding: 26px 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
  border-top: 2px solid var(--cs-red);
}
.jv-brand-stat-tile:hover { background: var(--cs-ink-3); }
.jv-bst-icon {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  color: var(--cs-red-bright);
}
.jv-bst-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
}
.jv-bst-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--cs-on-dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.jv-bst-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cs-on-dark-faint);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .jv-brand-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .jv-brand-intro { padding: 56px 16px; }
}
@media (max-width: 480px) {
  .jv-bst-num { font-size: 22px; }
}

/* ============================================================
   STATS STRIP — data plate
   ============================================================ */
.jv-stats {
  background: var(--cs-ink);
  border-top: 1px solid var(--cs-red);
  border-bottom: 1px solid var(--cs-red);
  padding: 0;
}

.jv-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.jv-stat-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid var(--cs-ink-line);
}

.jv-stat-item:last-child { border-right: none; }

.jv-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--cs-on-dark);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.jv-stat-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cs-on-dark-faint);
  font-weight: 500;
}

/* ============================================================
   PANEL SHOWCASE — framed like a scanned specimen
   ============================================================ */
.jv-panel-showcase {
  background: var(--cs-paper);
  padding: 88px 20px;
}
.jv-showcase-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.jv-showcase-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 36px;
  background: var(--cs-white);
  border: 1px solid rgba(10,9,7,0.10);
}

/* ---- corner-bracket frame: reusable "scanned specimen" marks ---- */
.cs-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 2;
}
.cs-corner-tl { top: 14px; left: 14px; border-top: 2.5px solid var(--cs-red); border-left: 2.5px solid var(--cs-red); }
.cs-corner-tr { top: 14px; right: 14px; border-top: 2.5px solid var(--cs-red); border-right: 2.5px solid var(--cs-red); }
.cs-corner-bl { bottom: 14px; left: 14px; border-bottom: 2.5px solid var(--cs-red); border-left: 2.5px solid var(--cs-red); }
.cs-corner-br { bottom: 14px; right: 14px; border-bottom: 2.5px solid var(--cs-red); border-right: 2.5px solid var(--cs-red); }

.jv-showcase-tag {
  position: absolute;
  top: 0; left: 28px;
  transform: translateY(-50%);
  background: var(--cs-red);
  color: var(--cs-white);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 3;
}

.jv-showcase-img img {
  max-width: 260px;
  width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,0.16));
  transition: transform 0.45s ease;
}
.jv-showcase-img img:hover { transform: scale(1.02); }
.jv-showcase-content { padding: 0; }
.jv-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cs-text);
  line-height: 1.05;
  margin: 8px 0 18px;
}
.jv-showcase-desc {
  font-size: 16px;
  color: var(--cs-text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.jv-showcase-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 30px;
  background: rgba(10,9,7,0.12);
  border: 1px solid rgba(10,9,7,0.12);
  max-width: 520px;
}
.jv-showcase-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  background: var(--cs-white);
  padding: 16px 12px;
  border-top: 2px solid var(--cs-red);
}
.jv-showcase-badge svg {
  width: 17px; height: 17px;
  color: var(--cs-red);
  flex-shrink: 0;
}
.jv-showcase-badge-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cs-text);
  line-height: 1;
}
.jv-showcase-badge-lbl {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--cs-text-faint);
}

@media (max-width: 900px) {
  .jv-showcase-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .jv-showcase-img img { max-width: 220px; }
  .jv-showcase-content .jv-section-eyebrow { justify-content: center; }
  .jv-showcase-content .jv-btn-verify { justify-content: center; }
  .jv-showcase-badges { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .jv-showcase-badges { grid-template-columns: 1fr 1fr; }
  .jv-panel-showcase { padding: 50px 16px; }
}

/* ============================================================
   SECTION TYPOGRAPHY (shared)
   ============================================================ */
.jv-verify-section {
  padding: 88px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.jv-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--cs-red);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.jv-section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--cs-red);
}

.jv-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.04;
  margin-bottom: 18px;
  color: var(--cs-text);
}

.jv-section-desc {
  font-size: 16px;
  color: var(--cs-text-dim);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

/* ============================================================
   VERIFY LAYOUT + CARD (the certificate)
   ============================================================ */
.jv-verify-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.jv-verify-card {
  background: var(--cs-white);
  border: 1px solid rgba(10,9,7,0.14);
  border-top: none;
  position: relative;
  box-shadow: var(--cs-shadow-card);
}
.jv-verify-card::before {
  content: '';
  display: block;
  height: 13px;
  background-image: radial-gradient(circle at 7px center, var(--cs-paper) 3.5px, transparent 4px);
  background-size: 14px 13px;
  background-repeat: repeat-x;
  background-position: 7px 0;
  background-color: var(--cs-red);
}
.jv-verify-card-body { padding: 32px 36px; }

.jv-verify-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--cs-text);
}

.jv-verify-card-sub {
  font-size: 13.5px;
  color: var(--cs-text-dim);
  margin-bottom: 26px;
  line-height: 1.5;
}

.jv-field {
  margin-bottom: 20px;
}

.jv-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cs-text-dim);
  margin-bottom: 9px;
}

.jv-field input {
  width: 100%;
  background: var(--cs-paper);
  border: 1.5px solid rgba(10,9,7,0.18);
  border-radius: var(--cs-radius);
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-mono);
  color: var(--cs-text);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.jv-field input:focus {
  border-color: var(--cs-red);
  background: var(--cs-white);
  box-shadow: 0 0 0 3px var(--cs-red-wash);
}

.jv-field input::placeholder {
  color: var(--cs-text-faint);
  font-family: var(--font-body);
}

.jv-hint-box {
  background: var(--cs-paper);
  border: 1px solid rgba(10,9,7,0.14);
  border-left: 3px solid var(--cs-red);
  border-radius: 0;
  padding: 13px 16px;
  font-size: 13px;
  color: var(--cs-text-dim);
  margin-bottom: 26px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.jv-hint-box svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--cs-red); }

.jv-btn-verify {
  width: 100%;
  background: var(--cs-red);
  color: var(--cs-white);
  border: none;
  border-radius: var(--cs-radius);
  padding: 15px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 4px 16px rgba(200,16,46,0.30);
  text-decoration: none;
}

.jv-btn-verify:hover { background: var(--cs-red-bright); transform: translateY(-1px); }
.jv-btn-verify:active { transform: translateY(0); }
.jv-btn-verify svg { width: 17px; height: 17px; }

/* ---- AUTO-GENERATED VERIFICATION CODE (security-stamp panel) ---- */
.jv-captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 11px;
  padding: 13px 14px;
  background: var(--cs-ink);
  border: 1px solid var(--cs-ink);
  border-radius: var(--cs-radius);
  flex-wrap: wrap;
}

.jv-captcha-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jv-captcha-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: var(--cs-on-dark-faint);
}

.jv-captcha-code {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--cs-on-dark);
  letter-spacing: 5px;
  user-select: all;
}

.jv-captcha-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.jv-captcha-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cs-red);
  color: var(--cs-white);
  border: none;
  padding: 8px 14px;
  border-radius: var(--cs-radius);
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.jv-captcha-btn:hover { background: var(--cs-red-bright); }

.jv-captcha-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.jv-captcha-btn-alt {
  background: transparent;
  color: var(--cs-on-dark);
  border: 1px solid var(--cs-ink-line);
  padding: 8px 10px;
}

.jv-captcha-btn-alt:hover { background: var(--cs-ink-3); border-color: var(--cs-red); }

.jv-captcha-hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--cs-text-faint);
}

@media (max-width: 480px) {
  .jv-captcha-code { font-size: 16px; letter-spacing: 3px; }
}

/* ---- RESULT BOX ---- */
.jv-result-box { display: none; }
.jv-result-box.active { display: block; }

.jv-result-success {
  background: var(--cs-white);
  border: 1px solid rgba(10,9,7,0.14);
  position: relative;
  box-shadow: var(--cs-shadow-card);
}
.jv-result-success::before {
  content: '';
  display: block;
  height: 13px;
  background-image: radial-gradient(circle at 7px center, var(--cs-paper) 3.5px, transparent 4px);
  background-size: 14px 13px;
  background-repeat: repeat-x;
  background-position: 7px 0;
  background-color: var(--cs-red);
}

.jv-result-header {
  background: var(--cs-paper);
  border-bottom: 1px solid rgba(10,9,7,0.12);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.jv-result-badge {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--cs-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(200,16,46,0.35);
}

.jv-result-badge svg { width: 24px; height: 24px; color: var(--cs-white) !important; }

.jv-result-head-text h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cs-text);
  margin-bottom: 2px;
}

.jv-result-head-text p {
  font-size: 13px;
  color: var(--cs-text-dim);
}

.jv-result-body { padding: 24px 28px; }

.jv-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 0;
  background: rgba(10,9,7,0.12);
  border: 1px solid rgba(10,9,7,0.12);
}

.jv-result-field {
  background: var(--cs-paper);
  padding: 13px 14px;
}

.jv-result-field-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--cs-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 5px;
  font-weight: 600;
}

.jv-result-field-value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--cs-text);
}

.jv-result-energy { grid-column: 1 / -1; }

.jv-energy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cs-red);
  color: var(--cs-white) !important;
  border-radius: var(--cs-radius);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.jv-result-footer {
  border-top: 1px solid rgba(10,9,7,0.12);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--cs-paper);
}

.jv-result-footer a {
  color: var(--cs-red);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.jv-result-footer a:hover { color: var(--cs-red-bright); }
.jv-result-footer a svg { width: 13px; height: 13px; }

.jv-result-footer-time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--cs-text-faint);
}

/* Error result — voided stamp, ink-black, not a hue cue */
.jv-result-error {
  background: var(--cs-ink);
  border: 1px solid var(--cs-ink-line);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--cs-shadow-card);
  position: relative;
}
.jv-result-error::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(200,16,46,0.45);
  pointer-events: none;
}

.jv-result-error-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--cs-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.jv-result-error-icon svg { width: 26px; height: 26px; color: var(--cs-red-bright); }

.jv-result-error h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--cs-on-dark);
}

.jv-result-error p {
  font-size: 14px;
  color: var(--cs-on-dark-dim);
  line-height: 1.6;
}

/* Info panel */
.jv-info-panel {
  background: var(--cs-white);
  border: 1px solid rgba(10,9,7,0.14);
  padding: 30px;
  box-shadow: var(--cs-shadow-card);
}

.jv-info-panel h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10,9,7,0.12);
  color: var(--cs-text);
}

.jv-info-step {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
  position: relative;
}
.jv-info-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  width: 1px;
  height: calc(100% - 10px);
  background: rgba(10,9,7,0.14);
}

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

.jv-step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cs-text);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--cs-white);
  flex-shrink: 0;
  z-index: 1;
}

.jv-step-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--cs-text); }
.jv-step-text p  { font-size: 13px; color: var(--cs-text-dim); line-height: 1.5; }

/* ============================================================
   ADVANTAGES SECTION — checklist datasheet
   ============================================================ */
.jv-advantages {
  background: var(--cs-paper);
  padding: 88px 20px;
  border-top: 1px solid rgba(10,9,7,0.10);
}
.jv-advantages-inner { max-width: 1160px; margin: 0 auto; }
.jv-advantages-header { margin-bottom: 52px; }
.jv-advantages-subtitle {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cs-text-faint);
  margin-top: 8px;
}
.jv-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 52px;
  background: rgba(10,9,7,0.12);
  border: 1px solid rgba(10,9,7,0.12);
}
.jv-adv-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cs-white);
  padding: 18px 22px;
}
.jv-adv-num {
  width: 34px; height: 34px;
  background: var(--cs-red);
  color: var(--cs-white);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.jv-adv-text {
  font-size: 14.5px;
  color: var(--cs-text);
  font-weight: 500;
  line-height: 1.4;
}

/* Temperature stats bar — data plate strip */
.jv-temp-bar {
  background: var(--cs-ink);
  border-top: 1px solid var(--cs-red);
  border-bottom: 1px solid var(--cs-red);
  padding: 30px 32px;
}
.jv-temp-bar-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.jv-temp-stat { text-align: center; padding: 0 16px; }
.jv-temp-val {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--cs-on-dark);
  line-height: 1.1;
}
.jv-temp-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--cs-on-dark-faint);
  margin-top: 6px;
  line-height: 1.3;
}
.jv-temp-divider {
  width: 1px;
  height: 44px;
  background: var(--cs-ink-line);
}

@media (max-width: 900px) {
  .jv-temp-bar-content {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .jv-temp-divider { display: none; }
  .jv-temp-bar { padding: 26px 20px; }
}
@media (max-width: 600px) {
  .jv-adv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .jv-advantages { padding: 52px 16px; }
  .jv-adv-item { padding: 16px 18px; }
  .jv-adv-num { width: 30px; height: 30px; font-size: 11.5px; }
  .jv-adv-text { font-size: 14px; }
  .jv-temp-val { font-size: 20px; }
  .jv-temp-lbl { font-size: 10px; }
}

/* ============================================================
   TEMPERATURE PERFORMANCE SECTION — dark spec card
   ============================================================ */
.jv-temp-section {
  background: var(--cs-ink);
  padding: 96px 20px;
  overflow: hidden;
  position: relative;
}
.jv-temp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(200,16,46,0.07) 0px,
    rgba(200,16,46,0.07) 1px,
    transparent 1px,
    transparent 11px
  );
  pointer-events: none;
}
.jv-temp-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.jv-temp-section-inner .jv-section-eyebrow {
  color: var(--cs-red-bright);
}
.jv-temp-section-inner .jv-section-eyebrow::before { background: var(--cs-red-bright); }
.jv-temp-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cs-on-dark);
  line-height: 1.05;
  margin: 12px 0 16px;
}
.jv-temp-section-desc {
  font-size: 15.5px;
  color: var(--cs-on-dark-dim);
  line-height: 1.75;
  margin-bottom: 30px;
}
.jv-temp-section-desc strong { color: var(--cs-on-dark); }
.jv-temp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 26px;
  background: var(--cs-ink-line);
  border: 1px solid var(--cs-ink-line);
}
.jv-temp-card {
  background: var(--cs-ink-2);
  padding: 20px 16px;
  text-align: center;
}
.jv-temp-card-muted {
  opacity: 0.55;
}
.jv-temp-card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--cs-red-bright);
  margin-bottom: 10px;
}
.jv-temp-card-muted .jv-temp-card-icon svg { stroke: var(--cs-on-dark-faint); }
.jv-temp-card-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cs-on-dark);
  letter-spacing: -0.3px;
}
.jv-temp-card-muted .jv-temp-card-val { color: var(--cs-on-dark-faint); }
.jv-temp-card-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--cs-on-dark-faint);
  margin: 6px 0 10px;
}
.jv-temp-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  display: inline-block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.jv-temp-card-badge.best { background: var(--cs-red); color: var(--cs-white); }
.jv-temp-card-badge.old  { background: transparent; border: 1px solid var(--cs-ink-line); color: var(--cs-on-dark-faint); }
.jv-temp-perks { display: flex; flex-direction: column; gap: 11px; }
.jv-temp-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cs-on-dark-dim);
}
.jv-temp-perk svg {
  width: 16px; height: 16px;
  stroke: var(--cs-red-bright);
  flex-shrink: 0;
}
.jv-temp-section-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.jv-temp-svg {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 900px) {
  .jv-temp-section-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .jv-temp-section-visual { order: -1; }
  .jv-temp-svg { max-width: 300px; }
  .jv-temp-section { padding: 64px 16px; }
}
@media (max-width: 480px) {
  .jv-temp-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   WARRANTY & TRUST SECTION
   ============================================================ */
.jv-warranty-section {
  background: var(--cs-paper);
  padding: 96px 20px;
  border-top: 1px solid rgba(10,9,7,0.10);
}
.jv-warranty-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.jv-warranty-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.jv-warranty-svg {
  width: 100%;
  max-width: 380px;
  overflow: visible;
}
.jv-warranty-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cs-text);
  line-height: 1.05;
  margin: 12px 0 16px;
}
.jv-warranty-desc {
  font-size: 15.5px;
  color: var(--cs-text-dim);
  line-height: 1.75;
  margin-bottom: 28px;
}
.jv-warranty-desc strong { color: var(--cs-text); }
.jv-warranty-rows { display: flex; flex-direction: column; gap: 1px; background: rgba(10,9,7,0.12); border: 1px solid rgba(10,9,7,0.12); }
.jv-warranty-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cs-white);
  padding: 16px 18px;
}
.jv-warranty-row-icon {
  width: 36px; height: 36px;
  background: var(--cs-text);
  border-radius: var(--cs-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.jv-warranty-row-icon svg {
  width: 17px; height: 17px;
  stroke: var(--cs-white);
}
.jv-warranty-row-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--cs-text);
  margin-bottom: 3px;
}
.jv-warranty-row-sub {
  font-size: 12.5px;
  color: var(--cs-text-dim);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .jv-warranty-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .jv-warranty-visual { order: -1; }
  .jv-warranty-svg { max-width: 260px; }
  .jv-warranty-section { padding: 64px 16px; }
}

/* ============================================================
   FEATURES — minimal datasheet grid, hairline dividers
   ============================================================ */
.jv-features {
  background: var(--cs-white);
  border-top: 1px solid rgba(10,9,7,0.10);
  border-bottom: 1px solid rgba(10,9,7,0.10);
  padding: 88px 24px;
}

.jv-features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jv-features-header {
  text-align: center;
  margin-bottom: 56px;
}

.jv-features-header .jv-section-eyebrow { justify-content: center; }
.jv-features-header .jv-section-title   { text-align: center; }

.jv-features-subtitle {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cs-text-faint);
  margin-top: 8px;
}

.jv-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,9,7,0.12);
  border: 1px solid rgba(10,9,7,0.12);
}

.jv-feature-card {
  background: var(--cs-white);
  padding: 32px 28px;
  transition: background 0.2s;
}

.jv-feature-card:hover {
  background: var(--cs-paper);
}

.jv-feature-icon {
  width: 42px; height: 42px;
  border: 1.5px solid var(--cs-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.jv-feature-icon svg { width: 20px; height: 20px; color: var(--cs-red); }

.jv-feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 9px;
  color: var(--cs-text);
}

.jv-feature-card p {
  font-size: 14px;
  color: var(--cs-text-dim);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.jv-footer {
  background: var(--cs-ink);
  border-top: 1px solid var(--cs-red);
  padding: 48px 24px 32px;
}

.jv-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.jv-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.jv-footer-logo svg, .jv-footer-logo img { height: 26px; width: auto; }

.jv-footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.jv-footer-links a {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--cs-on-dark-dim);
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 14px;
  border: 1px solid var(--cs-ink-line);
}

.jv-footer-links a:hover { color: var(--cs-on-dark); border-color: var(--cs-red); }

.jv-footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--cs-on-dark-faint);
  border-top: 1px solid var(--cs-ink-line);
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   AUTH PAGES (Login / Register) — split certificate layout
   ============================================================ */
.jv-auth-wrap {
  min-height: calc(100vh - 68px);
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--cs-white);
}

.jv-auth-side {
  background: var(--cs-ink);
  position: relative;
  overflow: hidden;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.jv-auth-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(200,16,46,0.08) 0px,
    rgba(200,16,46,0.08) 1px,
    transparent 1px,
    transparent 11px
  );
  pointer-events: none;
}
.jv-auth-side-top { position: relative; z-index: 1; }
.jv-auth-side-top img { height: 30px; width: auto; margin-bottom: 56px; }
.jv-auth-side-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.06;
  color: var(--cs-on-dark);
  margin-bottom: 18px;
}
.jv-auth-side-desc {
  font-size: 14.5px;
  color: var(--cs-on-dark-dim);
  line-height: 1.7;
  max-width: 360px;
}
.jv-auth-side-seal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cs-red-bright);
}
.jv-auth-side-seal .cs-seal { width: 56px; height: 56px; }
.jv-auth-side-seal-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cs-on-dark-faint);
  line-height: 1.5;
}

.jv-auth-box {
  background: var(--cs-white);
  padding: 64px 56px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}

.jv-auth-logo { display: none; }

.jv-auth-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cs-text);
  margin-bottom: 8px;
  text-align: left;
}

.jv-auth-sub {
  font-size: 14px;
  color: var(--cs-text-dim);
  margin-bottom: 32px;
  text-align: left;
  line-height: 1.5;
}

.jv-auth-field {
  margin-bottom: 18px;
}

.jv-auth-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cs-text-dim);
  margin-bottom: 8px;
}

.jv-auth-field input {
  width: 100%;
  background: var(--cs-paper);
  border: 1.5px solid rgba(10,9,7,0.18);
  border-radius: var(--cs-radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-mono);
  color: var(--cs-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.jv-auth-field input:focus {
  border-color: var(--cs-red);
  box-shadow: 0 0 0 3px var(--cs-red-wash);
  background: var(--cs-white);
}

.jv-auth-field input::placeholder { color: var(--cs-text-faint); font-family: var(--font-body); }

.jv-auth-btn {
  width: 100%;
  background: var(--cs-red);
  color: var(--cs-white);
  border: none;
  border-radius: var(--cs-radius);
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(200,16,46,0.28);
}

.jv-auth-btn:hover { background: var(--cs-red-bright); transform: translateY(-1px); }

.jv-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.jv-auth-divider::before,
.jv-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(10,9,7,0.12);
}

.jv-auth-divider span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--cs-text-faint);
  white-space: nowrap;
}

.jv-auth-switch {
  text-align: left;
  font-size: 14px;
  color: var(--cs-text-dim);
  margin-top: 4px;
}

.jv-auth-switch a {
  color: var(--cs-red);
  font-weight: 600;
  text-decoration: none;
}

.jv-auth-switch a:hover { color: var(--cs-red-bright); text-decoration: underline; }

.jv-auth-notice {
  padding: 13px 16px;
  border-radius: var(--cs-radius);
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.jv-auth-notice svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

.jv-auth-notice.success {
  background: var(--cs-paper);
  border: 1px solid rgba(10,9,7,0.14);
  border-left: 3px solid var(--cs-red);
  color: var(--cs-text);
}

.jv-auth-notice.error {
  background: var(--cs-ink);
  border: 1px solid var(--cs-ink-line);
  border-left: 3px solid var(--cs-red);
  color: var(--cs-on-dark);
}

@media (max-width: 900px) {
  .jv-auth-wrap { grid-template-columns: 1fr; }
  .jv-auth-side { display: none; }
  .jv-auth-box { padding: 48px 28px; max-width: 480px; }
}

/* Customer portal top bar (header extension when logged in) */
.jv-user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jv-user-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--cs-ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jv-user-avatar svg { width: 15px; height: 15px; color: var(--cs-on-dark-dim); }

.jv-user-name {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--cs-on-dark-dim);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .jv-stats-inner       { grid-template-columns: repeat(2, 1fr); }
  .jv-stat-item:nth-child(2) { border-right: none; }
  .jv-stat-num          { font-size: 30px; }
  .jv-verify-layout     { grid-template-columns: 1fr; }
  .jv-features-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .jv-header            { padding: 0 16px; }
  .jv-header-nav .hide-mobile { display: none; }

  .jv-header-nav        { display: none; }
  .jv-hamburger         { display: flex !important; }

  .jv-hero {
    margin-top: 68px;
    height: 88vh;
    min-height: 460px;
  }

  .jv-verify-card-body { padding: 24px 22px; }
  .jv-info-panel { padding: 22px; }
  .jv-stats-inner       { grid-template-columns: repeat(2, 1fr); }
  .jv-result-grid       { grid-template-columns: 1fr; }
  .jv-result-energy     { grid-column: 1; }
  .jv-features-grid     { grid-template-columns: 1fr; }
  .jv-footer-inner      { flex-direction: column; align-items: flex-start; }

  .jv-stat-item  { padding: 20px 10px; }
  .jv-stat-num   { font-size: 22px; letter-spacing: -0.3px; margin-bottom: 4px; }
  .jv-stat-label { font-size: 10px; }
}

@media (max-width: 380px) {
  .jv-stat-num   { font-size: 19px; }
  .jv-stat-label { font-size: 9.5px; }
}

/* ============================================================
   PRINT-SAFE / FOCUS / MOTION
   ============================================================ */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--cs-red-bright);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .jv-hero-badge-dot, .jv-scroll-hint span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PANEL SHOWCASE — NEW DESIGN (screenshot Image 3)
   ============================================================ */
.jv-showcase-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 24px 0;
  border: 1px solid #d1d5db;
  overflow: hidden;
  max-width: 560px;
}
.jv-spec-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
}
.jv-spec-box svg {
  width: 17px;
  height: 17px;
  color: var(--cs-red);
  flex-shrink: 0;
}
.jv-spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #111;
  text-transform: uppercase;
}
/* Full-width red verify button for showcase */
.jv-btn-verify-full {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 560px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
/* Showcase image — red border on the outer box */
.jv-showcase-img {
  border: 1px solid var(--cs-red) !important;
}

/* ============================================================
   ADVANTAGES — NEW PAIRED-ROW DESIGN (screenshot Image 2)
   ============================================================ */
.jv-adv-two-col {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
  margin: 40px 0 0;
}
.jv-adv-panel-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f4f0;
  padding: 28px 20px;
}
.jv-adv-panel-img img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}
.jv-adv-reasons {
  display: flex;
  flex-direction: column;
}
/* Each horizontal paired row */
.jv-adv-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e5e0d5;
  padding: 0;
}
.jv-adv-pair:last-child {
  border-bottom: none;
}
/* Left item: text — num box, right-aligned */
.jv-adv-left-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px 12px 16px 0;
  border-right: 1px solid #e5e0d5;
}
/* Right item: num box — text, left-aligned */
.jv-adv-right-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px 0 16px 16px;
}
.jv-adv-text-left {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #1a1a1a;
  text-align: right;
  line-height: 1.4;
}
.jv-adv-text-right {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #1a1a1a;
  text-align: left;
  line-height: 1.4;
}
/* Red-bordered number box */
.jv-adv-num-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--cs-red);
  color: var(--cs-red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  background: transparent;
  letter-spacing: 0.05em;
}

@media (max-width: 1000px) {
  .jv-adv-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .jv-adv-panel-img {
    max-width: 180px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .jv-adv-pair {
    grid-template-columns: 1fr;
  }
  .jv-adv-left-item {
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid #e5e0d5;
    padding: 12px 0;
  }
  .jv-adv-right-item {
    padding: 12px 0;
  }
  .jv-adv-text-left { text-align: left; }
  .jv-showcase-specs-grid { grid-template-columns: 1fr; }
  .jv-btn-verify-full { max-width: 100%; }
}

/* ============================================================
   DI TECH SOLUTIONS CREDIT BANNER
   ============================================================ */
.jv-ditechbanner {
  background: #C8102E;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.jv-ditechbanner strong {
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   IMAGE + CONTENT FEATURE SECTIONS (3 new sections)
   ============================================================ */
.jv-img-feature {
  padding: 0;
  overflow: hidden;
}

.jv-img-feature--dark {
  background: #0F2550;
}

.jv-img-feature--light {
  background: #F5F7FA;
}

.jv-img-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 340px;
}

.jv-img-feature-inner--reverse {
  /* text on left, image on right — default order is media left, content right */
}

.jv-img-feature-media {
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

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

.jv-img-feature-content {
  padding: 56px 52px;
}

.jv-img-feature-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 18px;
  line-height: 1.25;
}

.jv-img-feature-title--dark {
  color: #0F2550;
}

.jv-img-feature-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0 0 28px;
}

.jv-img-feature-desc--dark {
  color: #444;
}

.jv-btn-verify--red {
  background: var(--cs-red) !important;
  color: #fff !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: var(--cs-radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.jv-btn-verify--red:hover {
  background: var(--cs-red-bright) !important;
}

@media (max-width: 768px) {
  .jv-img-feature-inner {
    grid-template-columns: 1fr;
  }
  .jv-img-feature-inner--reverse .jv-img-feature-content {
    order: -1;
  }
  .jv-img-feature-media {
    min-height: 220px;
  }
  .jv-img-feature-content {
    padding: 36px 24px;
  }
}

/* ============================================================
   OVERRIDE: Keep temp and warranty sections dark navy
   ============================================================ */
.jv-temp-section {
  background: #0F2550 !important;
}

.jv-warranty-section {
  background: #0F2550 !important;
}

.jv-brand-intro {
  background: #0F2550 !important;
}

.jv-stats {
  background: #C8102E !important;
  border-top: none !important;
  border-bottom: none !important;
}

.jv-stat-num, .jv-stat-label {
  color: #fff !important;
}

.jv-stat-item {
  border-color: rgba(255,255,255,0.2) !important;
}

.jv-footer {
  background: #0F2550 !important;
}

.jv-footer-links a, .jv-footer-copy, .jv-footer-links a:hover {
  color: rgba(255,255,255,0.75) !important;
}

.jv-mobile-drawer {
  background: #0F2550 !important;
}

/* ============================================================
   WHITE SECTIONS — verify, features, etc. text corrections
   ============================================================ */
.jv-verify-section,
.jv-features,
.jv-showcase {
  background: #fff;
}

/* Section eyebrow on white backgrounds */
.jv-verify-section .jv-section-eyebrow,
.jv-features .jv-section-eyebrow {
  color: var(--cs-red);
}

/* Feature cards on white bg — give subtle border */
.jv-feature-card {
  background: #F5F7FA !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
}

.jv-feature-card:hover {
  background: #EEF1F6 !important;
}

.jv-feature-card h3 {
  color: #0F2550 !important;
}

.jv-feature-card p {
  color: #555 !important;
}

/* ============================================================
   COMPLETE COLOUR RESET — WHITE + RED ONLY, NO BLUE/BLACK
   ============================================================ */

/* Remove all navy/blue from previously added overrides */
.jv-temp-section {
  background: #fff !important;
  border-top: 3px solid var(--cs-red) !important;
  border-bottom: 3px solid var(--cs-red) !important;
}

.jv-temp-section-title { color: #1a1a1a !important; }
.jv-temp-section-desc { color: #444 !important; }
.jv-temp-section-desc strong { color: #1a1a1a !important; }

/* Fix SVG chart colors for white bg */
.jv-temp-svg { filter: invert(0); }

.jv-temp-card {
  background: #fff !important;
  border: 2px solid #eee !important;
}
.jv-temp-card-val { color: #1a1a1a !important; }
.jv-temp-card-lbl { color: #666 !important; }
.jv-temp-card-icon svg { stroke: var(--cs-red) !important; }
.jv-temp-card-muted .jv-temp-card-icon svg { stroke: #bbb !important; }
.jv-temp-card-muted .jv-temp-card-val { color: #aaa !important; }
.jv-temp-perk { color: #444 !important; }
.jv-temp-perk svg { stroke: var(--cs-red) !important; }

/* Warranty section — white */
.jv-warranty-section {
  background: #fff !important;
  border-top: 3px solid var(--cs-red) !important;
}
.jv-warranty-title { color: #1a1a1a !important; }
.jv-warranty-desc { color: #444 !important; }
.jv-warranty-desc strong { color: #1a1a1a !important; }
.jv-warranty-row-title { color: #1a1a1a !important; }
.jv-warranty-row-sub { color: #666 !important; }
.jv-warranty-row-icon { background: #fbe9ec !important; border-color: #fcc !important; }
.jv-warranty-row-icon svg { stroke: var(--cs-red) !important; }

/* Brand intro — white */
.jv-brand-intro {
  background: #fff !important;
  border-bottom: 1px solid #eee !important;
}
.jv-brand-title { color: #1a1a1a !important; }
.jv-brand-desc { color: #444 !important; }
.jv-brand-desc strong { color: #1a1a1a !important; }
.jv-brand-pill { background: #fbe9ec !important; border-color: #fcc !important; color: #1a1a1a !important; }
.jv-brand-pill svg { stroke: var(--cs-red) !important; }
.jv-brand-stat-tile { background: #f5f5f5 !important; border: 1px solid #eee !important; }
.jv-brand-stat-tile:hover { background: #fbe9ec !important; }
.jv-bst-num { color: #1a1a1a !important; }
.jv-bst-lbl { color: #666 !important; }
.jv-bst-icon svg { stroke: var(--cs-red) !important; }

/* Stats strip — red bg white text */
.jv-stats {
  background: var(--cs-red) !important;
  border: none !important;
}
.jv-stat-num, .jv-stat-label { color: #fff !important; }
.jv-stat-item { border-color: rgba(255,255,255,0.25) !important; }

/* Footer — red bg */
.jv-footer {
  background: var(--cs-red) !important;
  border-top: none !important;
}
.jv-footer-copy { color: rgba(255,255,255,0.75) !important; }
.jv-footer-links a { color: rgba(255,255,255,0.85) !important; border-color: rgba(255,255,255,0.3) !important; }
.jv-footer-links a:hover { color: #fff !important; border-color: #fff !important; background: transparent !important; }

/* Mobile drawer — white */
.jv-mobile-drawer {
  background: #fff !important;
  border-left: 3px solid var(--cs-red) !important;
}
.jv-mobile-drawer-nav a { color: #1a1a1a !important; }
.jv-mobile-drawer-nav a:hover { background: #fbe9ec !important; color: var(--cs-red) !important; }

/* Header — white */
.jv-header {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 2px solid var(--cs-red) !important;
  box-shadow: none !important;
}
.jv-header-nav a { color: #444 !important; }
.jv-header-nav a:hover { background: #fbe9ec !important; color: var(--cs-red) !important; }

/* Temp bar strip — red */
.jv-temp-bar {
  background: var(--cs-red) !important;
  border: none !important;
}
.jv-temp-val { color: #fff !important; }
.jv-temp-lbl { color: rgba(255,255,255,0.75) !important; }
.jv-temp-divider { background: rgba(255,255,255,0.3) !important; }

/* Auth side panel */
.jv-auth-side {
  background: var(--cs-red) !important;
}

/* ============================================================
   NEW IMAGE BLOCK SECTIONS — WHITE + RED ONLY
   ============================================================ */
.jv-imgblock {
  padding: 0;
  overflow: hidden;
}

.jv-imgblock--red {
  background: var(--cs-red);
}

.jv-imgblock--white {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.jv-imgblock-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 380px;
}

.jv-imgblock-inner--rev .jv-imgblock-content { order: -1; }

.jv-imgblock-media {
  overflow: hidden;
}

.jv-imgblock-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jv-imgblock-content {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jv-imgblock-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.25;
}

.jv-imgblock-title--dark {
  color: #1a1a1a;
}

.jv-imgblock-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.72;
  margin: 0 0 28px;
}

.jv-imgblock-desc--dark {
  color: #555;
}

.jv-imgblock-btn {
  display: inline-block;
  background: #fff;
  color: var(--cs-red);
  padding: 12px 28px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}

.jv-imgblock-btn:hover {
  background: #fbe9ec;
}

.jv-imgblock-btn--outline {
  background: transparent;
  color: var(--cs-red);
  border: 2px solid var(--cs-red);
}

.jv-imgblock-btn--outline:hover {
  background: var(--cs-red);
  color: #fff;
}

@media (max-width: 768px) {
  .jv-imgblock-inner,
  .jv-imgblock-inner--rev {
    grid-template-columns: 1fr;
  }
  .jv-imgblock-inner--rev .jv-imgblock-content { order: 0; }
  .jv-imgblock-media { min-height: 240px; }
  .jv-imgblock-content { padding: 36px 24px; }
  .jv-imgblock-title { font-size: 22px; }
}

/* ============================================================
   FINAL FIXES — footer black, warranty text, ditechbanner
   ============================================================ */

/* FOOTER — black background */
.jv-footer {
  background: #111111 !important;
  border-top: 3px solid var(--cs-red) !important;
}
.jv-footer-copy {
  color: rgba(255,255,255,0.65) !important;
}
.jv-footer-links a {
  color: rgba(255,255,255,0.75) !important;
  border-color: rgba(255,255,255,0.25) !important;
}
.jv-footer-links a:hover {
  color: #fff !important;
  border-color: var(--cs-red) !important;
  background: transparent !important;
}
.jv-footer-logo img {
  filter: brightness(0) invert(1);
}

/* DESIGNED BY banner — black bg, white text */
.jv-ditechbanner {
  background: #111111 !important;
  color: rgba(255,255,255,0.55) !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}
.jv-ditechbanner strong {
  color: #fff !important;
}

/* WARRANTY SECTION — white background, dark text visible */
.jv-warranty-section {
  background: #fff !important;
  border-top: 3px solid var(--cs-red) !important;
  border-bottom: 3px solid var(--cs-red) !important;
}
.jv-warranty-title {
  color: #111 !important;
}
.jv-warranty-desc {
  color: #444 !important;
}
.jv-warranty-desc strong {
  color: #111 !important;
}
.jv-warranty-row-title {
  color: #111 !important;
  font-weight: 600;
}
.jv-warranty-row-sub {
  color: #555 !important;
}
.jv-warranty-row-icon {
  background: #fbe9ec !important;
  border-color: rgba(200,16,46,0.2) !important;
}
.jv-warranty-row-icon svg {
  stroke: var(--cs-red) !important;
}
.jv-warranty-rows {
  background: #f5f5f5 !important;
  border-color: #eee !important;
}
.jv-warranty-row {
  background: #fff !important;
}

/* WARRANTY SVG text fix */
.jv-warranty-svg text {
  font-family: Arial, sans-serif !important;
}

/* Section eyebrow on white warranty section */
.jv-warranty-content .jv-section-eyebrow {
  color: var(--cs-red) !important;
}

/* ============================================================
   HERO — force all text WHITE regardless of on-dark variable
   ============================================================ */
.jv-hero .jv-hero-badge {
  color: #ffffff !important;
  background: rgba(200,16,46,0.25) !important;
  border-color: rgba(200,16,46,0.5) !important;
}
.jv-hero .jv-hero-title {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.jv-hero .jv-hero-title span {
  color: var(--cs-red-bright) !important;
}
.jv-hero .jv-hero-sub {
  color: rgba(255,255,255,0.90) !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.jv-hero .jv-scroll-hint {
  color: rgba(255,255,255,0.6) !important;
}
