/* ════════════════════════════════════════════════════════════════
   JVG Cooling & Heating Solutions — Site stylesheet
   Family-operated HVAC, Napa Valley & Sonoma County — 25 years of experience
   ════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0F172A;
  background: #FBFBFA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { display: block; position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --ink:      #0F172A;
  --ink-d:    #1E293B;
  --white:    #FFFFFF;
  --bg:       #FBFBFA;
  --line:     #E5E7EB;
  --accent:   #C53A1D;   /* JVG brand red (from logo) */
  --accent-d: #9E2D14;
  --blue:     #2A3566;   /* JVG brand blue (from card) */
  --blue-d:   #1E2747;
  --muted:    #6B7280;
}

/* ════════════════════════════════════════════════════════════════
   FLOATING DECORATIVE BACKGROUND
   ════════════════════════════════════════════════════════════════ */
.jvg-bg, .jvg-bg * { box-sizing: border-box; }
.jvg-bg {
  --jvg-icon-color: #0F172A;
  --jvg-icon-opacity: 0.06;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  background: transparent;
}
.jvg-bg__icon {
  position: absolute;
  color: var(--jvg-icon-color);
  opacity: var(--jvg-icon-opacity);
  will-change: transform;
}
.jvg-bg__icon--hills    { top:  4%;  left: -2%;  width: 360px; animation: jvg-drift-a 36s ease-in-out infinite; }
.jvg-bg__icon--snow-a   { top:  9%;  right:  6%; width: 140px; animation: jvg-spin 90s linear infinite; }
.jvg-bg__icon--grape    { top: 30%;  left: 12%;  width:  80px; animation: jvg-drift-b 32s ease-in-out infinite; }
.jvg-bg__icon--sun      { top: 28%;  right: 14%; width: 110px; animation: jvg-drift-c 30s ease-in-out infinite; opacity: 0.05; }
.jvg-bg__icon--thermo-a { top: 40%;  left: 38%;  width:  44px; animation: jvg-drift-b 28s ease-in-out infinite; opacity: 0.07; }
.jvg-bg__icon--cypress  { top: 60%;  left:  6%;  width:  60px; animation: jvg-drift-a 30s ease-in-out infinite; }
.jvg-bg__icon--thermo-b { top: 56%;  right: 12%; width:  90px; animation: jvg-drift-c 30s ease-in-out infinite; }
.jvg-bg__icon--unit     { top: 80%;  right: 22%; width: 180px; animation: jvg-drift-a 32s ease-in-out infinite; }
@keyframes jvg-drift-a { 0%,100% { transform: translate(0,0); } 50% { transform: translate(8px,-10px); } }
@keyframes jvg-drift-b { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-6px,8px); } }
@keyframes jvg-drift-c { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10px,6px); } }
@keyframes jvg-spin    { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .jvg-bg__icon { animation: none !important; } }
@media (max-width: 720px) {
  .jvg-bg__icon { display: none; }
  .jvg-bg__icon--hills, .jvg-bg__icon--snow-a, .jvg-bg__icon--grape, .jvg-bg__icon--unit { display: block; }
  .jvg-bg__icon--hills { width: 220px; }
  .jvg-bg__icon--snow-a { width: 80px; }
  .jvg-bg__icon--grape { width: 60px; }
  .jvg-bg__icon--unit { width: 110px; }
}

/* ════════════════════════════════════════════════════════════════
   MENU
   ════════════════════════════════════════════════════════════════ */
.jvg-menu, .jvg-menu *, .jvg-menu *::before, .jvg-menu *::after { box-sizing: border-box; }
.jvg-menu {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.jvg-menu__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
}
.jvg-menu__brand { text-decoration: none; color: var(--ink); display: flex; align-items: center; line-height: 1; }
.jvg-menu__logo { height: 62px; width: auto; display: block; }
.jvg-menu__brand-mark { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.jvg-menu__brand-sub { font-size: 11px; font-weight: 600; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }
.jvg-menu__nav { display: flex; justify-content: center; gap: 26px; }
.jvg-menu__nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.jvg-menu__nav a:hover { color: var(--accent); }
.jvg-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(197,58,29,0.32);
  transition: background 0.15s ease, transform 0.15s ease;
  min-height: 56px;
}
.jvg-menu__cta:hover { background: var(--accent-d); transform: translateY(-1px); }
.jvg-menu__cta-icon { width: 22px; height: 22px; color: var(--white); flex: 0 0 22px; }
.jvg-menu__cta strong { display: block; font-size: 16px; line-height: 1.1; color: var(--white); }
.jvg-menu__cta em {
  display: block; font-style: normal; font-size: 11px; font-weight: 600; color: var(--white);
  opacity: 0.92; margin-top: 1px; letter-spacing: 0.02em;
}
.jvg-menu__burger { display: none; background: transparent; border: 0; width: 36px; height: 36px; cursor: pointer; padding: 0; }
.jvg-menu__burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; }

@media (max-width: 1100px) { .jvg-menu__nav { gap: 18px; } .jvg-menu__nav a { font-size: 14px; } }
@media (max-width: 960px) {
  .jvg-menu__inner { grid-template-columns: 1fr auto auto; padding: 14px 18px; gap: 12px; }
  .jvg-menu__logo { height: 50px; }
  .jvg-menu__nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .jvg-menu.is-open .jvg-menu__nav { display: flex; }
  .jvg-menu__cta em { display: none; }
  .jvg-menu__cta strong { font-size: 14px; }
  .jvg-menu__cta { padding: 10px 16px; min-height: 48px; }
  .jvg-menu__burger { display: block; }
}
@media (max-width: 480px) { .jvg-menu__cta-icon { display: none; } }

/* ════════════════════════════════════════════════════════════════
   HERO  (Block 1)
   ════════════════════════════════════════════════════════════════ */
.jvg-hero, .jvg-hero *, .jvg-hero *::before, .jvg-hero *::after { box-sizing: border-box; }
.jvg-hero {
  width: 100vw;
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  background: transparent;
  color: var(--ink);
  z-index: 1;
}
.jvg-hero__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 96px 32px 88px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center;
}
.jvg-hero__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 24px;
}
.jvg-hero__h1 {
  font-size: clamp(38px, 5vw, 60px); font-weight: 800; line-height: 1.06;
  letter-spacing: -0.025em; margin: 0 0 28px; color: var(--ink);
}
.jvg-hero__h1 span { display: block; }
.jvg-hero__h1-accent { color: var(--accent); margin-top: 4px; font-style: italic; }
.jvg-hero__lede { font-size: 19px; line-height: 1.5; color: #374151; margin: 0 0 36px; max-width: 540px; }
.jvg-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.jvg-hero__btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700; border-radius: 8px; color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
  min-height: 64px;
}
.jvg-hero__btn--call {
  background: var(--accent); padding: 18px 26px; gap: 14px;
  box-shadow: 0 10px 24px rgba(197,58,29,0.28);
}
.jvg-hero__btn--call:hover { background: var(--accent-d); transform: translateY(-1px); }
.jvg-hero__btn--call .jvg-hero__btn-icon { width: 24px; height: 24px; flex: 0 0 24px; color: var(--white); }
.jvg-hero__btn--call strong { display: block; font-size: 19px; line-height: 1.1; color: var(--white); }
.jvg-hero__btn--call em {
  display: block; font-style: normal; font-weight: 600; font-size: 12.5px; color: var(--white);
  opacity: 0.92; margin-top: 2px; letter-spacing: 0.02em;
}
.jvg-hero__btn--text {
  background: var(--blue); padding: 16px 24px; gap: 10px; font-size: 17px;
  box-shadow: 0 8px 18px rgba(30,39,71,0.25);
}
.jvg-hero__btn--text:hover { background: var(--blue-d); transform: translateY(-1px); }
.jvg-hero__btn--text .jvg-hero__btn-icon { width: 20px; height: 20px; flex: 0 0 20px; color: var(--white); }
.jvg-hero__btn--text span { color: var(--white); }
.jvg-hero__trust {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: auto auto; justify-content: start;
  column-gap: 36px; row-gap: 12px;
}
.jvg-hero__trust li {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: #374151;
}
.jvg-hero__trust-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(197,58,29,0.1); color: var(--accent);
  font-size: 12px; font-weight: 700; flex: 0 0 22px;
}
.jvg-hero__media {
  position: relative; aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,0.06), 0 20px 50px rgba(15,23,42,0.12);
}
.jvg-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jvg-hero__chip {
  position: absolute; left: 20px; right: 20px; bottom: 20px; margin: 0;
  padding: 14px 18px;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 10px; color: var(--white);
}
.jvg-hero__chip-stars { color: #FBBF24; font-size: 14px; letter-spacing: 0.18em; margin-bottom: 6px; }
.jvg-hero__chip blockquote {
  margin: 0 0 6px; padding: 0 0 0 12px;
  border-left: 3px solid var(--accent);
  font-size: 14px; line-height: 1.4; font-weight: 500;
}
.jvg-hero__chip figcaption { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; padding-left: 12px; }

@media (max-width: 960px) {
  .jvg-hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 64px; }
  .jvg-hero__media { aspect-ratio: 16 / 10; order: -1; }
  .jvg-hero__btn--call, .jvg-hero__btn--text { width: 100%; }
  .jvg-hero__trust { grid-template-columns: 1fr; row-gap: 10px; }
}
@media (max-width: 560px) {
  .jvg-hero__lede { font-size: 17px; }
  .jvg-hero__btn--call strong { font-size: 17px; }
  .jvg-hero__chip { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; }
}

/* ════════════════════════════════════════════════════════════════
   TRUST BAR  (Block 2)
   ════════════════════════════════════════════════════════════════ */
.jvg-trust, .jvg-trust *, .jvg-trust *::before, .jvg-trust *::after { box-sizing: border-box; }
.jvg-trust {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  z-index: 1;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-top: 1px solid rgba(15,23,42,0.09);
  border-bottom: 1px solid rgba(15,23,42,0.09);
  color: var(--ink);
}
.jvg-trust__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 40px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 28px;
}
.jvg-trust__item { display: flex; align-items: center; gap: 18px; min-width: 0; }
.jvg-trust__num {
  font-size: clamp(46px, 4.6vw, 60px); font-weight: 800; line-height: 1;
  letter-spacing: -0.04em; color: var(--ink); flex: 0 0 auto; white-space: nowrap;
}
.jvg-trust__num--offer { color: var(--accent); display: inline-flex; align-items: baseline; }
.jvg-trust__dollar { font-size: 0.55em; font-weight: 700; margin-right: 2px; align-self: flex-start; margin-top: 0.15em; }
.jvg-trust__cents { font-size: 0.45em; font-weight: 700; margin-left: 2px; }
.jvg-trust__num--word { color: var(--accent); font-style: italic; font-weight: 700; letter-spacing: -0.02em; }
.jvg-trust__label { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.jvg-trust__label strong { font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.jvg-trust__label span { font-size: 13.5px; color: var(--muted); line-height: 1.3; }
.jvg-trust__sep {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,0.09) 20%, rgba(15,23,42,0.09) 80%, transparent);
}
@media (max-width: 1080px) { .jvg-trust__inner { gap: 18px; } .jvg-trust__item { gap: 14px; } }
@media (max-width: 960px) {
  .jvg-trust__inner { grid-template-columns: 1fr 1fr; gap: 28px 24px; padding: 32px 24px; }
  .jvg-trust__sep { display: none; }
  .jvg-trust__item { padding: 14px 0; }
  .jvg-trust__num { font-size: 48px; }
}
@media (max-width: 560px) {
  .jvg-trust__inner { grid-template-columns: 1fr; gap: 20px; }
  .jvg-trust__item { padding: 16px 0; border-bottom: 1px solid rgba(15,23,42,0.09); }
  .jvg-trust__item:last-child { border-bottom: none; }
  .jvg-trust__num { font-size: 42px; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES  (Block 3)
   ════════════════════════════════════════════════════════════════ */
.jvg-services, .jvg-services *, .jvg-services *::before, .jvg-services *::after { box-sizing: border-box; }
.jvg-services {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  z-index: 1; background: transparent; color: var(--ink);
}
.jvg-services__inner { max-width: 1280px; margin: 0 auto; padding: 112px 32px; }
.jvg-services__head { max-width: 760px; margin: 0 0 64px; }
.jvg-services__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}
.jvg-services__h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; margin: 0 0 16px; color: var(--ink);
}
.jvg-services__h2 em { font-style: italic; font-weight: 800; color: var(--accent); }
.jvg-services__sub { font-size: 18px; line-height: 1.55; color: #374151; margin: 0; max-width: 680px; }
.jvg-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.jvg-services__card {
  position: relative;
  padding: 32px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.jvg-services__card:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,23,42,0.08);
}
.jvg-services__card:hover .jvg-services__icon { color: var(--accent); background: rgba(197,58,29,0.08); }
.jvg-services__card:hover .jvg-services__cta span { transform: translateX(4px); }
.jvg-services__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,23,42,0.04); border-radius: 12px; color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
}
.jvg-services__icon svg { width: 30px; height: 30px; }
.jvg-services__badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--accent); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.jvg-services__card h3 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin: 4px 0 0; line-height: 1.2;
}
.jvg-services__card p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; flex: 1; }
.jvg-services__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14.5px;
  transition: color 0.15s ease;
}
.jvg-services__cta span {
  display: inline-block; transition: transform 0.2s ease;
  color: var(--accent); font-size: 18px; line-height: 1;
}
.jvg-services__cta:hover { color: var(--accent); }
@media (max-width: 960px) {
  .jvg-services__inner { padding: 80px 24px; }
  .jvg-services__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .jvg-services__head { margin-bottom: 48px; }
  .jvg-services__card { padding: 26px; }
}
@media (max-width: 560px) {
  .jvg-services__inner { padding: 64px 20px; }
  .jvg-services__grid { grid-template-columns: 1fr; }
  .jvg-services__h2 { font-size: 28px; }
  .jvg-services__sub { font-size: 16px; }
  .jvg-services__card h3 { font-size: 20px; }
}

/* ════════════════════════════════════════════════════════════════
   ABOUT  (Block 4)
   ════════════════════════════════════════════════════════════════ */
.jvg-about, .jvg-about *, .jvg-about *::before, .jvg-about *::after { box-sizing: border-box; }
.jvg-about {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  z-index: 1; background: transparent; color: var(--ink);
}
.jvg-about__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 112px 32px;
  display: grid; grid-template-columns: 0.95fr 1.1fr; gap: 80px; align-items: center;
}
.jvg-about__media { position: relative; }
.jvg-about__photo {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,0.06), 0 24px 60px rgba(15,23,42,0.14);
}
.jvg-about__photo img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.jvg-about__stamp {
  position: absolute; top: 22px; left: 22px;
  background: var(--accent); color: var(--white);
  padding: 7px 14px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 4px; box-shadow: 0 4px 12px rgba(197,58,29,0.3);
}
.jvg-about__numbers {
  margin: -32px 32px 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 8px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  position: relative; z-index: 1;
}
.jvg-about__numbers > div { text-align: center; border-right: 1px solid var(--line); }
.jvg-about__numbers > div:last-child { border-right: none; }
.jvg-about__numbers strong {
  display: block; font-size: 30px; font-weight: 800; color: var(--accent);
  letter-spacing: -0.03em; line-height: 1;
}
.jvg-about__numbers span {
  display: block; margin-top: 4px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.jvg-about__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
}
.jvg-about__h2 {
  font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; margin: 0 0 28px; color: var(--ink);
}
.jvg-about__h2 em { font-style: italic; color: var(--accent); }
.jvg-about__text p { font-size: 18px; line-height: 1.6; color: #374151; margin: 0 0 16px; }
.jvg-about__text p strong { color: var(--ink); font-weight: 700; }
.jvg-about__quote {
  margin: 28px 0; padding: 22px 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.jvg-about__quote-es {
  display: block; font-size: 22px; font-style: italic; font-weight: 600;
  color: var(--ink); margin-bottom: 6px; line-height: 1.3;
}
.jvg-about__quote-en { display: block; font-size: 16px; color: var(--muted); line-height: 1.5; }
.jvg-about__signature strong { display: block; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.jvg-about__signature span { font-size: 14px; color: var(--muted); }
@media (max-width: 960px) {
  .jvg-about__inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  .jvg-about__photo img { aspect-ratio: 3 / 4; }
  .jvg-about__numbers { margin: -32px 16px 0; }
}
@media (max-width: 560px) {
  .jvg-about__inner { padding: 64px 20px; }
  .jvg-about__h2 { font-size: 30px; }
  .jvg-about__text p { font-size: 16px; }
  .jvg-about__quote-es { font-size: 19px; }
  .jvg-about__numbers { padding: 14px 4px; }
  .jvg-about__numbers strong { font-size: 24px; }
}

/* ════════════════════════════════════════════════════════════════
   WHY JVG  (Block 5)
   ════════════════════════════════════════════════════════════════ */
.jvg-why, .jvg-why *, .jvg-why *::before, .jvg-why *::after { box-sizing: border-box; }
.jvg-why {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  z-index: 1; background: transparent; color: var(--ink);
}
.jvg-why__inner { max-width: 1280px; margin: 0 auto; padding: 112px 32px; }
.jvg-why__head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.jvg-why__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}
.jvg-why__h2 {
  font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; margin: 0 0 18px; color: var(--ink);
}
.jvg-why__h2 em { font-style: italic; color: var(--accent); }
.jvg-why__sub { font-size: 18px; line-height: 1.55; color: #374151; margin: 0; }
.jvg-why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 56px; }
.jvg-why__feature {
  position: relative; padding: 36px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.jvg-why__feature:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,23,42,0.08);
}
.jvg-why__feature:hover .jvg-why__icon { background: rgba(197,58,29,0.08); color: var(--accent); }
.jvg-why__num {
  position: absolute; top: 28px; right: 32px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(15,23,42,0.32);
}
.jvg-why__icon {
  width: 56px; height: 56px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,23,42,0.04); border-radius: 12px; color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.jvg-why__icon svg { width: 28px; height: 28px; }
.jvg-why__feature h3 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 6px; line-height: 1.2;
}
.jvg-why__creds {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent); margin: 0 0 14px;
}
.jvg-why__feature p:last-child { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.jvg-why__bottom { text-align: center; padding-top: 40px; border-top: 1px solid var(--line); }
.jvg-why__bottom p { font-size: 17px; color: var(--muted); margin: 0 0 20px; }
.jvg-why__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.jvg-why__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 8px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  color: var(--white); min-height: 56px;
}
.jvg-why__btn--red { background: var(--accent); box-shadow: 0 8px 22px rgba(197,58,29,0.32); }
.jvg-why__btn--red:hover { background: var(--accent-d); transform: translateY(-1px); }
.jvg-why__btn--dark { background: var(--blue); box-shadow: 0 8px 18px rgba(30,39,71,0.25); }
.jvg-why__btn--dark:hover { background: var(--blue-d); transform: translateY(-1px); }
@media (max-width: 960px) {
  .jvg-why__inner { padding: 80px 24px; }
  .jvg-why__head { margin-bottom: 48px; }
  .jvg-why__feature { padding: 28px; }
}
@media (max-width: 560px) {
  .jvg-why__inner { padding: 64px 20px; }
  .jvg-why__h2 { font-size: 30px; }
  .jvg-why__sub { font-size: 16px; }
  .jvg-why__grid { grid-template-columns: 1fr; gap: 14px; }
  .jvg-why__feature { padding: 24px; }
  .jvg-why__feature h3 { font-size: 20px; }
  .jvg-why__btn--red, .jvg-why__btn--dark { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════
   OFFER ($69.99)  (Block 6)
   ════════════════════════════════════════════════════════════════ */
.jvg-offer, .jvg-offer *, .jvg-offer *::before, .jvg-offer *::after { box-sizing: border-box; }
.jvg-offer {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  z-index: 1; background: transparent; color: var(--ink);
}
.jvg-offer__inner { max-width: 840px; margin: 0 auto; padding: 112px 32px; text-align: center; }
.jvg-offer__head { margin-bottom: 36px; }
.jvg-offer__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}
.jvg-offer__h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; margin: 0; color: var(--ink);
}
.jvg-offer__h2 em { font-style: italic; color: var(--accent); }

.jvg-offer__questions {
  list-style: none; padding: 0; margin: 0 auto 48px;
  text-align: left; max-width: 620px; counter-reset: q;
}
.jvg-offer__questions li {
  counter-increment: q; padding: 14px 0 14px 56px; position: relative;
  font-size: 17px; font-weight: 600; color: #374151; line-height: 1.4;
  border-bottom: 1px solid var(--line);
}
.jvg-offer__questions li:last-child { border-bottom: none; }
.jvg-offer__questions li::before {
  content: counter(q);
  position: absolute; left: 0; top: 14px;
  width: 36px; height: 36px;
  background: var(--accent); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.jvg-offer__card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 18px;
  padding: 48px 40px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.06), 0 24px 60px rgba(15,23,42,0.10);
}
.jvg-offer__price {
  display: inline-flex; align-items: flex-start; color: var(--accent);
  line-height: 0.95; letter-spacing: -0.04em; margin: 0 0 8px;
}
.jvg-offer__dollar { font-size: clamp(36px, 4vw, 48px); font-weight: 700; margin-right: 4px; margin-top: 8px; }
.jvg-offer__amount { font-size: clamp(96px, 12vw, 144px); font-weight: 800; }
.jvg-offer__cents { font-size: clamp(36px, 4vw, 48px); font-weight: 700; margin-top: 8px; margin-left: 2px; }
.jvg-offer__price-label {
  font-size: 16px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink); margin: 0 0 10px; text-transform: uppercase;
}
.jvg-offer__disclaimer {
  font-size: 14px; font-weight: 600; color: var(--accent);
  margin: 0 0 26px; line-height: 1.5;
}
.jvg-offer__list {
  list-style: none; margin: 0 0 36px; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px;
  text-align: left;
}
.jvg-offer__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; font-weight: 500; color: #374151; line-height: 1.45;
}
.jvg-offer__tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%;
  background: rgba(197,58,29,0.1); color: var(--accent);
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.jvg-offer__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.jvg-offer__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 8px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  color: var(--white); min-height: 56px;
}
.jvg-offer__btn--red { background: var(--accent); box-shadow: 0 8px 22px rgba(197,58,29,0.35); }
.jvg-offer__btn--red:hover { background: var(--accent-d); transform: translateY(-1px); }
.jvg-offer__btn--dark { background: var(--blue); box-shadow: 0 8px 18px rgba(30,39,71,0.25); }
.jvg-offer__btn--dark:hover { background: var(--blue-d); transform: translateY(-1px); }
.jvg-offer__note { font-size: 13px; color: var(--muted); margin: 0; }
@media (max-width: 720px) {
  .jvg-offer__inner { padding: 80px 20px; }
  .jvg-offer__card { padding: 36px 22px; }
  .jvg-offer__list { grid-template-columns: 1fr; gap: 10px; }
  .jvg-offer__questions { max-width: 100%; }
  .jvg-offer__questions li { padding-left: 48px; font-size: 16px; }
  .jvg-offer__questions li::before { width: 32px; height: 32px; font-size: 14px; }
  .jvg-offer__btn--red, .jvg-offer__btn--dark { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICE AREAS  (Block 7)
   ════════════════════════════════════════════════════════════════ */
.jvg-areas, .jvg-areas *, .jvg-areas *::before, .jvg-areas *::after { box-sizing: border-box; }
.jvg-areas {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  z-index: 1; background: transparent; color: var(--ink);
}
.jvg-areas__inner { max-width: 1200px; margin: 0 auto; padding: 112px 32px; }
.jvg-areas__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.jvg-areas__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}
.jvg-areas__h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; margin: 0 0 16px; color: var(--ink);
}
.jvg-areas__h2 em { font-style: italic; color: var(--accent); }
.jvg-areas__sub { font-size: 18px; line-height: 1.55; color: #374151; margin: 0; }
.jvg-areas__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}
.jvg-areas__grid > div {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 28px 18px; text-align: center;
  font-weight: 700; font-size: 16px; color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.jvg-areas__grid > div:hover { background: rgba(197,58,29,0.06); color: var(--accent); }
.jvg-areas__note { text-align: center; margin: 32px 0 0; font-size: 15px; color: var(--muted); }
@media (max-width: 960px) {
  .jvg-areas__inner { padding: 80px 24px; }
  .jvg-areas__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .jvg-areas__inner { padding: 64px 20px; }
  .jvg-areas__grid { grid-template-columns: repeat(2, 1fr); }
  .jvg-areas__grid > div { padding: 20px 12px; font-size: 14.5px; }
  .jvg-areas__h2 { font-size: 28px; }
}

/* ════════════════════════════════════════════════════════════════
   FAQ + FINAL CTA  (Block 8)
   ════════════════════════════════════════════════════════════════ */
.jvg-faq, .jvg-faq *, .jvg-faq *::before, .jvg-faq *::after { box-sizing: border-box; }
.jvg-faq {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  z-index: 1; background: transparent; color: var(--ink);
}
.jvg-faq__inner { max-width: 880px; margin: 0 auto; padding: 112px 32px; }
.jvg-faq__head { text-align: center; margin-bottom: 48px; }
.jvg-faq__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}
.jvg-faq__h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; margin: 0; color: var(--ink);
}
.jvg-faq__h2 em { font-style: italic; color: var(--accent); }
.jvg-faq__h2--center { margin-bottom: 8px; }
.jvg-faq__list {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}
.jvg-faq__list details { border-bottom: 1px solid var(--line); }
.jvg-faq__list details:last-child { border-bottom: none; }
.jvg-faq__list summary {
  cursor: pointer; list-style: none;
  padding: 20px 24px; font-weight: 700; font-size: 16px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.15s ease;
}
.jvg-faq__list summary::-webkit-details-marker { display: none; }
.jvg-faq__list summary::after {
  content: "+"; color: var(--accent);
  font-size: 24px; line-height: 1; font-weight: 400; flex: 0 0 auto;
}
.jvg-faq__list details[open] summary { color: var(--accent); }
.jvg-faq__list details[open] summary::after { content: "−"; }
.jvg-faq__list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.jvg-faq__cta { text-align: center; margin: 80px auto 0; padding-top: 80px; border-top: 1px solid var(--line); }
.jvg-faq__cta p { color: var(--muted); margin: 0 0 24px; font-size: 17px; }
.jvg-faq__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.jvg-faq__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 8px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  color: var(--white); min-height: 56px;
}
.jvg-faq__btn--red { background: var(--accent); box-shadow: 0 8px 22px rgba(197,58,29,0.35); }
.jvg-faq__btn--red:hover { background: var(--accent-d); transform: translateY(-1px); }
.jvg-faq__btn--dark { background: var(--blue); box-shadow: 0 8px 18px rgba(30,39,71,0.25); }
.jvg-faq__btn--dark:hover { background: var(--blue-d); transform: translateY(-1px); }
.jvg-faq__hours { margin-top: 22px !important; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 720px) {
  .jvg-faq__inner { padding: 80px 20px; }
  .jvg-faq__h2 { font-size: 28px; }
  .jvg-faq__list summary { padding: 18px 20px; font-size: 15px; }
  .jvg-faq__list details p { padding: 0 20px 20px; }
  .jvg-faq__cta { margin-top: 56px; padding-top: 56px; }
  .jvg-faq__btn--red, .jvg-faq__btn--dark { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.jvg-foot, .jvg-foot *, .jvg-foot *::before, .jvg-foot *::after { box-sizing: border-box; }
.jvg-foot {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  background: var(--blue); color: var(--white);
  margin-top: 80px;
}
.jvg-foot__top {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
}
.jvg-foot__mark { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; display: block; line-height: 1; }
.jvg-foot__sub {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: #94A3B8; margin: 4px 0 20px;
}
.jvg-foot__brand p { color: #94A3B8; font-size: 14px; line-height: 1.6; margin: 0; max-width: 320px; }
.jvg-foot__col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); margin: 0 0 16px;
}
.jvg-foot__col a {
  display: block; color: #94A3B8; text-decoration: none;
  padding: 4px 0; font-size: 14px; transition: color 0.15s ease;
}
.jvg-foot__col a:hover { color: var(--white); }
.jvg-foot__phone { color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important; }
.jvg-foot__hours { display: block; margin-top: 8px; color: #94A3B8; font-size: 13px; }
.jvg-foot__legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 32px; max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #94A3B8;
}
@media (max-width: 960px) {
  .jvg-foot__top { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; gap: 32px; }
}
@media (max-width: 560px) {
  .jvg-foot__top { grid-template-columns: 1fr; }
  .jvg-foot__legal { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════════
   404
   ════════════════════════════════════════════════════════════════ */
.jvg-404 {
  width: 100vw;
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  z-index: 1;
  min-height: 60vh;
  display: flex; align-items: center;
}
.jvg-404__inner { max-width: 720px; margin: 0 auto; padding: 96px 32px; text-align: center; }
.jvg-404__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}
.jvg-404__h1 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; margin: 0 0 16px; color: var(--ink);
}
.jvg-404__lede { font-size: 18px; color: var(--muted); margin: 0 0 32px; }
.jvg-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.jvg-404__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 8px; font-weight: 700; font-size: 16px;
  text-decoration: none; color: var(--white); min-height: 56px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.jvg-404__btn--red { background: var(--accent); box-shadow: 0 8px 22px rgba(197,58,29,0.32); }
.jvg-404__btn--red:hover { background: var(--accent-d); transform: translateY(-1px); }
.jvg-404__btn--dark { background: var(--blue); }
.jvg-404__btn--dark:hover { background: var(--blue-d); transform: translateY(-1px); }
.jvg-404__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center;
}
.jvg-404__links a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 14px; }
.jvg-404__links a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   LEAD FORM
   ════════════════════════════════════════════════════════════════ */
.jvg-lead, .jvg-lead * { box-sizing: border-box; }
.jvg-lead { position: relative; z-index: 1; padding: 8px 20px 8px; }
.jvg-lead__inner {
  max-width: 760px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 18px 50px rgba(30,39,71,0.10);
}
.jvg-lead__head { text-align: center; margin-bottom: 24px; }
.jvg-lead__eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 10px;
}
.jvg-lead__h2 {
  font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; letter-spacing: -0.02em;
  color: var(--blue); margin: 0 0 10px; line-height: 1.1;
}
.jvg-lead__h2 em { font-style: italic; color: var(--accent); }
.jvg-lead__sub { color: var(--muted); margin: 0; font-size: 15.5px; }
.jvg-lead__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.jvg-lead__field { display: flex; flex-direction: column; gap: 6px; }
.jvg-lead__field span { font-size: 13px; font-weight: 600; color: var(--ink); }
.jvg-lead__field input {
  font: inherit; font-size: 15px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px;
  background: var(--bg); color: var(--ink); transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.jvg-lead__field input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42,53,102,0.12);
}
.jvg-lead__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.jvg-lead__btn {
  margin-top: 18px; width: 100%;
  background: var(--accent); color: var(--white);
  border: 0; border-radius: 10px; cursor: pointer;
  padding: 16px 24px; font: inherit; font-weight: 700; font-size: 16px;
  box-shadow: 0 8px 22px rgba(197,58,29,0.30);
  transition: background 0.15s ease, transform 0.15s ease;
}
.jvg-lead__btn:hover { background: var(--accent-d); transform: translateY(-1px); }
.jvg-lead__btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.jvg-lead__msg { margin: 14px 0 0; text-align: center; font-weight: 600; font-size: 15px; min-height: 1px; }
.jvg-lead__msg.is-ok { color: #15803D; }
.jvg-lead__msg.is-warn { color: var(--accent); }
.jvg-lead__fine { margin: 14px 0 0; text-align: center; font-size: 13.5px; color: var(--muted); }
.jvg-lead__fine a { color: var(--blue); font-weight: 700; text-decoration: none; }
.jvg-lead__fine a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .jvg-lead__inner { padding: 30px 22px; }
  .jvg-lead__row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   LEGAL PAGES (privacy / terms / accessibility)
   ════════════════════════════════════════════════════════════════ */
.jvg-legal { position: relative; z-index: 1; padding: 64px 24px 80px; }
.jvg-legal__inner { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 48px 44px; }
.jvg-legal h1 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; color: var(--blue); margin: 0 0 6px; }
.jvg-legal__updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.jvg-legal h2 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 30px 0 10px; }
.jvg-legal p, .jvg-legal li { font-size: 15.5px; line-height: 1.7; color: var(--ink-d); }
.jvg-legal ul { padding-left: 22px; margin: 10px 0; }
.jvg-legal a { color: var(--accent); font-weight: 600; text-decoration: none; }
.jvg-legal a:hover { text-decoration: underline; }
@media (max-width: 640px) { .jvg-legal__inner { padding: 32px 22px; } }

.jvg-foot__legal-links a { color: inherit; text-decoration: none; }
.jvg-foot__legal-links a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   ARTICLE / BLOG
   ════════════════════════════════════════════════════════════════ */
.jvg-article, .jvg-article * { box-sizing: border-box; }
.jvg-article { max-width: 720px; margin: 0 auto; padding: 64px 24px 48px; position: relative; z-index: 1; }
.jvg-article__head { margin-bottom: 34px; }
.jvg-article__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px;
}
.jvg-article h1 {
  font-size: clamp(30px, 4.6vw, 44px); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--blue); margin: 0 0 14px;
}
.jvg-article__meta { color: var(--muted); font-size: 14.5px; margin: 0; }
.jvg-article__lede { font-size: 19px; line-height: 1.65; color: var(--ink); font-weight: 500; margin: 0 0 10px; }
.jvg-article h2 {
  font-size: 24px; font-weight: 800; color: var(--blue); letter-spacing: -0.015em;
  margin: 40px 0 12px; line-height: 1.25;
}
.jvg-article p { margin: 0 0 16px; line-height: 1.7; }
.jvg-article ul { margin: 0 0 16px; padding-left: 24px; }
.jvg-article li { margin-bottom: 8px; line-height: 1.65; }
.jvg-article strong { color: var(--ink); }
.jvg-article__cta {
  background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--accent);
  border-radius: 14px; padding: 30px 28px; margin-top: 44px;
}
.jvg-article__cta h2 { margin-top: 0; }
.jvg-article__btn {
  display: inline-block; background: var(--accent); color: var(--white); text-decoration: none;
  font-weight: 700; font-size: 17px; padding: 15px 28px; border-radius: 10px;
  box-shadow: 0 8px 22px rgba(197,58,29,0.3); transition: background 0.15s ease, transform 0.15s ease;
}
.jvg-article__btn:hover { background: var(--accent-d); transform: translateY(-1px); }
.jvg-article__fine { font-size: 13px; color: var(--muted); margin-bottom: 0; }
.jvg-article__list { display: flex; flex-direction: column; gap: 16px; }
.jvg-article__card {
  display: block; background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 28px; text-decoration: none; color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.jvg-article__card:hover { border-color: var(--accent); transform: translateY(-2px); }
.jvg-article__card-tag {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 10px;
}
.jvg-article__card h2 { font-size: 21px; margin: 0 0 10px; }
.jvg-article__card p { color: var(--muted); margin: 0 0 12px; }
.jvg-article__more { color: var(--accent); font-weight: 700; font-size: 15px; }
