/* ========================================
   JOBEYZE HOMEPAGE CSS v5 — VISUAL POWERHOUSE
   Built: February 10, 2026
   ======================================== */

/* CSS Variables */
:root {
  --jz-brand-start: #D0003A;
  --jz-brand-mid: #B51151;
  --jz-brand-end: #AB2379;
  --jz-dark: #0F0F1A;
  --jz-dark-card: #16162A;
  --jz-text-primary: #1A1A2E;
  --jz-text-secondary: #6B7280;
  --jz-text-muted: #9CA3AF;
  --jz-border: #E5E7EB;
  --jz-bg-light: #F9FAFB;
  --jz-white: #FFFFFF;
  --jz-gradient: linear-gradient(135deg, var(--jz-brand-start), var(--jz-brand-end));
  --jz-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --jz-mono: 'JetBrains Mono', monospace;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes jz-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jz-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes jz-scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes jz-slide-right {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes jz-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

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

@keyframes jz-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes jz-orbit {
  from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes jz-orbit-reverse {
  from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
  to { transform: rotate(-360deg) translateX(100px) rotate(360deg); }
}

@keyframes jz-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes jz-counter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jz-line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes jz-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* Scroll reveal */
.jz-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.jz-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.jz-reveal-delay-1 { transition-delay: 0.1s; }
.jz-reveal-delay-2 { transition-delay: 0.2s; }
.jz-reveal-delay-3 { transition-delay: 0.3s; }
.jz-reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   HERO SECTION
   ======================================== */

.jz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 80px;
  overflow: hidden;
  background: var(--jz-dark);
}

/* Animated gradient mesh background */
.jz-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.jz-hero-bg .jz-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: jz-pulse-glow 8s ease-in-out infinite;
}

.jz-orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(208, 0, 58, 0.55) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.jz-orb-2 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(171, 35, 121, 0.45) 0%, transparent 65%);
  bottom: -10%; left: -5%;
  animation-delay: -3s;
}

.jz-orb-3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(208, 0, 58, 0.2) 0%, transparent 70%);
  top: 35%; left: 25%;
  animation-delay: -5s;
}

/* Floating grid pattern overlay */
.jz-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

/* Orbiting particles */
.jz-hero-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}

.jz-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jz-brand-start);
  opacity: 0;
  animation: jz-orbit 20s linear infinite;
}
.jz-particle:nth-child(1) { animation-delay: 0s; opacity: 0.4; width: 4px; height: 4px; }
.jz-particle:nth-child(2) { animation: jz-orbit-reverse 25s linear infinite; animation-delay: -5s; opacity: 0.3; background: var(--jz-brand-end); }
.jz-particle:nth-child(3) { animation-delay: -10s; opacity: 0.5; width: 3px; height: 3px; }
.jz-particle:nth-child(4) { animation: jz-orbit-reverse 18s linear infinite; animation-delay: -3s; opacity: 0.25; width: 5px; height: 5px; background: var(--jz-brand-mid); }

.jz-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.jz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  animation: jz-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  backdrop-filter: blur(10px);
}

.jz-hero-badge .jz-live-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: jz-dot-pulse 2s ease-in-out infinite;
}

.jz-hero h1 {
  font-family: var(--jz-font);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--jz-white);
  margin-bottom: 28px;
  animation: jz-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.jz-hero h1 .jz-gradient-text {
  background: linear-gradient(135deg, #FF4D6D, #D0003A, #AB2379, #FF4D6D);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: jz-gradient-shift 6s ease-in-out infinite;
}

.jz-hero-sub {
  font-family: var(--jz-font);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  margin: 0 auto 48px;
  animation: jz-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.jz-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: jz-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* Buttons */
.jz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 44px;
  background: var(--jz-gradient);
  color: #fff !important;
  border: none;
  border-radius: 100px;
  font-family: var(--jz-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(208, 0, 58, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.jz-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.jz-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(208, 0, 58, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  color: #fff !important;
  text-decoration: none !important;
}
.jz-btn-primary:hover::after { opacity: 1; }

.jz-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 44px;
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-family: var(--jz-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.jz-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: #fff !important;
  text-decoration: none !important;
}

/* Hero scroll indicator */
.jz-scroll-hint { display: none !important;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: jz-fade-in 1s 1.5s both;
}

.jz-scroll-hint span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.jz-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(208, 0, 58, 0.6), transparent);
  animation: jz-line-grow 1.5s ease-in-out infinite;
  transform-origin: top;
}

/* ========================================
   METRICS TICKER BAR
   ======================================== */
.jz-metrics-bar {
  background: var(--jz-white);
  border-bottom: 1px solid var(--jz-border);
  padding: 12px 16px;
}
.jz-metrics-static {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}
.jz-trustbar-item {
  font-family: var(--jz-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--jz-text-secondary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.jz-trustbar-item strong {
  color: var(--jz-text-primary);
  font-weight: 700;
}
.jz-trustbar-sep {
  color: var(--jz-brand-start);
  font-size: 20px;
  font-weight: 700;
  padding: 0 14px;
  line-height: 1;
}
.jz-metrics-track {
  display: flex;
  gap: 64px;
  animation: jz-ticker 30s linear infinite;
  width: max-content;
}

/* ========================================
   SHARED SECTION TYPOGRAPHY
   ======================================== */

.jz-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jz-section-label {
  font-family: var(--jz-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--jz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  text-align: center;
}

.jz-section-title {
  font-family: var(--jz-font);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--jz-text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 64px;
  text-align: center;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.jz-products {
  padding: 120px 24px;
  background: var(--jz-bg-light);
  position: relative;
}

.jz-products::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--jz-gradient);
  border-radius: 2px;
}

.jz-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.jz-product-card {
  background: var(--jz-white);
  border: 1px solid var(--jz-border);
  border-radius: 24px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none !important;
  color: inherit !important;
}

.jz-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--jz-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.jz-product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(208,0,58,0.02), rgba(171,35,121,0.02));
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.jz-product-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08), 0 0 0 1px rgba(208,0,58,0.08);
  text-decoration: none !important;
  color: inherit !important;
}
.jz-product-card:hover::before { transform: scaleX(1); }
.jz-product-card:hover::after { opacity: 1; }

.jz-product-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FFF0F3, #FFF5F9);
  border: 1px solid #FFE0E8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.jz-product-card:hover .jz-product-icon {
  transform: scale(1.08);
}

.jz-product-card h3 {
  font-family: var(--jz-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--jz-text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.jz-product-card p {
  font-family: var(--jz-font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--jz-text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.jz-product-link {
  font-family: var(--jz-font);
  font-size: 14px;
  font-weight: 700;
  background: var(--jz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.jz-product-card:hover .jz-product-link { gap: 10px; }

/* ========================================
   TWO-PATH SECTION
   ======================================== */

.jz-paths {
  padding: 120px 24px;
  background: var(--jz-white);
}

.jz-paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.jz-path-card {
  background: var(--jz-bg-light);
  border: 1px solid var(--jz-border);
  border-radius: 28px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.jz-path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--jz-gradient);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 0 3px 3px 0;
}

.jz-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.06);
  border-color: transparent;
}
.jz-path-card:hover::before { opacity: 1; }

.jz-path-label {
  font-family: var(--jz-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--jz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.jz-path-card h3 {
  font-family: var(--jz-font);
  font-size: 26px;
  font-weight: 800;
  color: var(--jz-text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.jz-btn-primary-dark {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: var(--jz-gradient);
  color: #fff !important;
  border: none;
  border-radius: 100px;
  font-family: var(--jz-font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(208,0,58,0.2);
}
.jz-btn-primary-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(208,0,58,0.35);
  color: #fff !important;
  text-decoration: none !important;
}

/* Feature Blocks — both path cards */
.jz-path-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.jz-path-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--jz-white);
  border: 1px solid var(--jz-border);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jz-path-feature:hover {
  border-color: rgba(208, 0, 58, 0.15);
  box-shadow: 0 4px 16px rgba(208, 0, 58, 0.06);
  transform: translateY(-2px);
}

.jz-path-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FFF0F3, #FFF5F9);
  border: 1px solid #FFE0E8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jz-path-feature strong {
  font-family: var(--jz-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--jz-text-primary);
  display: block;
  margin-bottom: 2px;
}

.jz-path-feature span {
  font-family: var(--jz-font);
  font-size: 13px;
  color: var(--jz-text-muted);
  line-height: 1.4;
}

/* ========================================
   TRUST SECTION — DARK
   ======================================== */

.jz-trust {
  padding: 120px 24px;
  background: var(--jz-dark);
  position: relative;
  overflow: hidden;
}

.jz-trust .jz-trust-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.jz-trust .jz-trust-glow:first-child {
  background: var(--jz-brand-start);
  top: -20%; right: -10%;
}
.jz-trust .jz-trust-glow:nth-child(2) {
  background: var(--jz-brand-end);
  bottom: -20%; left: -10%;
}

.jz-trust .jz-section-label {
  color: rgba(255,255,255,0.4);
  -webkit-text-fill-color: unset;
  background: none;
}

.jz-trust .jz-section-title {
  color: var(--jz-white);
}

.jz-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.jz-trust-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 44px 28px 36px;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.jz-trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}

.jz-trust-num {
  font-family: var(--jz-font);
  font-size: clamp(40px, 3.5vw, 56px);
  font-weight: 900;
  background: linear-gradient(135deg, #FF4D6D, var(--jz-brand-start), var(--jz-brand-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.jz-trust-unit {
  font-family: var(--jz-font);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.jz-trust-item h4 {
  font-family: var(--jz-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--jz-white);
  margin-bottom: 10px;
}

.jz-trust-item p {
  font-family: var(--jz-font);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

/* ========================================
   TESTIMONIALS — AUTO-SCROLL TICKER
   ======================================== */

.jz-testimonials {
  padding: 120px 0;
  background: var(--jz-bg-light);
  overflow: hidden;
  position: relative;
}

.jz-testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--jz-gradient);
  border-radius: 2px;
}

.jz-testimonials .jz-section-label,
.jz-testimonials .jz-section-title {
  padding: 0 24px;
}

.jz-testimonial-wrapper {
  position: relative;
}

/* Fade edges */
.jz-testimonial-wrapper::before,
.jz-testimonial-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.jz-testimonial-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--jz-bg-light), transparent);
}
.jz-testimonial-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--jz-bg-light), transparent);
}

.jz-testimonial-track {
  display: flex;
  gap: 24px;
  animation: jz-ticker 60s linear infinite;
  width: max-content;
  padding: 8px 0;
}

.jz-testimonial-track:hover {
  animation-play-state: paused;
}

.jz-testimonial-card {
  flex-shrink: 0;
  width: 400px;
  background: var(--jz-white);
  border: 1px solid var(--jz-border);
  border-radius: 24px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.jz-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border-color: transparent;
}

.jz-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 64px;
  font-family: Georgia, serif;
  background: var(--jz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.jz-testimonial-stars {
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.jz-testimonial-stars span {
  background: var(--jz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jz-testimonial-text {
  font-family: var(--jz-font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--jz-text-secondary);
  margin-bottom: 28px;
}

.jz-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--jz-border);
}

.jz-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--jz-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jz-font);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.jz-testimonial-author strong {
  font-family: var(--jz-font);
  font-size: 15px;
  color: var(--jz-text-primary);
  display: block;
}
.jz-testimonial-author span {
  font-family: var(--jz-font);
  font-size: 13px;
  color: var(--jz-text-muted);
}

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

.jz-footer-cta {
  padding: 120px 24px;
  background: var(--jz-white);
  text-align: center;
  position: relative;
}

.jz-footer-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.jz-footer-cta .jz-accent-line {
  width: 80px;
  height: 3px;
  background: var(--jz-gradient);
  border-radius: 2px;
  margin: 0 auto 44px;
}

.jz-footer-cta h2 {
  font-family: var(--jz-font);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--jz-text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.jz-footer-cta p {
  font-family: var(--jz-font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--jz-text-secondary);
  margin-bottom: 44px;
}

.jz-footer-cta .jz-hero-ctas .jz-btn-outline {
  color: var(--jz-text-primary) !important;
  border-color: var(--jz-border);
}
.jz-footer-cta .jz-hero-ctas .jz-btn-outline:hover {
  border-color: var(--jz-brand-mid);
  color: var(--jz-brand-mid) !important;
  background: rgba(208,0,58,0.03);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .jz-metrics-bar { padding: 8px 12px; }
  .jz-trustbar-item { font-size: 8.5px; letter-spacing: 0; }
  .jz-trustbar-sep { font-size: 10px; padding: 0 5px; }
  /* Fix red flash on mobile — remove red box-shadow from default state */
  .jz-btn-primary { box-shadow: none; }
  .jz-btn-primary-dark { box-shadow: none; }
  .jz-btn-outline { box-shadow: none; }
  .jz-product-card { box-shadow: none; }
  .jz-product-card:hover { box-shadow: none; }
}
@media (max-width: 1024px) {
  .jz-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .jz-product-grid { grid-template-columns: repeat(2, 1fr); }
  .jz-hero { padding: 80px 20px 60px; min-height: auto; }
  .jz-testimonial-card { width: 340px; }
}

@media (max-width: 600px) {
  /* Hero — tighter, punchier */
  .jz-hero { padding: 16px 16px 28px; min-height: auto; }
  .jz-hero h1 { font-size: 30px !important; margin-bottom: 16px; }
  .jz-hero-sub { font-size: 14px; line-height: 1.6; margin-bottom: 24px; max-width: 100%; }
  .jz-hero-badge { font-size: 10px; padding: 8px 16px; margin-bottom: 12px; }
  .jz-hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
  .jz-btn-primary, .jz-btn-outline, .jz-btn-primary-dark { width: 100%; max-width: 300px; justify-content: center; padding: 14px 32px; font-size: 14px; }
  /* Sections — compact */
  .jz-products, .jz-paths, .jz-trust, .jz-footer-cta { padding: 48px 16px; }
  .jz-testimonials { padding: 48px 0; }
  .jz-section-title { font-size: 26px; margin-bottom: 32px; }
  .jz-section-label { font-size: 11px; margin-bottom: 10px; }
  /* Product cards — tighter */
  .jz-product-grid { grid-template-columns: 1fr; gap: 16px; }
  .jz-product-card { padding: 28px 24px 24px; border-radius: 18px; }
  .jz-product-card h3 { font-size: 18px; }
  .jz-product-card p { font-size: 13px; line-height: 1.5; }
  /* Paths — tighter */
  .jz-paths-grid { grid-template-columns: 1fr; gap: 16px; }
  .jz-path-card { padding: 28px 24px; }
  .jz-path-features { grid-template-columns: 1fr; }
  /* Trust grid */
  .jz-trust-grid { grid-template-columns: 1fr; gap: 16px; }
  /* Footer CTA — compact */
  .jz-footer-cta h2 { font-size: 26px; }
  .jz-footer-cta p { font-size: 15px; margin-bottom: 28px; }
  .jz-footer-cta .jz-accent-line { margin-bottom: 24px; }
  /* Testimonials */
  .jz-testimonial-card { width: 280px; }
  .jz-scroll-hint { display: none; }
}

/* ========================================
   OVERRIDES — Hide old homepage sections
   ======================================== */
.hero-section-wrapper,.hero-bg-shapes,.hero-container,.hero-content,.hook-wrapper,.hook1,.hook2,.resources-section,.features-section,.looking-container,.insights-section{display:none!important;}

