
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

.hz-ac-jump,
.hz-ac-jump * {
  box-sizing: border-box;
}

.hz-ac-jump {
  --hz-orange: #f26a21;
  --hz-orange-dark: #d95416;
  --hz-navy: #071d33;
  --hz-dark: #111827;
  --hz-text: #4b5563;
  --hz-light-text: #6b7280;
  --hz-border: #e5e7eb;
  --hz-card-bg: #ffffff;
  --hz-soft-bg: #f6f8fb;

  width: 100%;
  background: #ffffff;
  color: var(--hz-dark);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.hz-ac-jump a {
  color: inherit;
  text-decoration: none !important;
}

.hz-ac-jump h2,
.hz-ac-jump h3,
.hz-ac-jump p {
  margin: 0;
}

.hz-ac-jump-section {
  padding: 76px 0;
  background: #ffffff;
}

.hz-ac-jump-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}

.hz-ac-jump-head {
  max-width: 980px;
  margin-bottom: 42px;
}

.hz-ac-jump-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hz-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hz-ac-jump-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--hz-orange);
  display: inline-block;
}

.hz-ac-jump-title {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.hz-ac-jump-desc {
  max-width: 980px;
  color: var(--hz-text);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
}

.hz-ac-jump-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.hz-ac-jump-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 36px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 14%, rgba(242, 106, 33, 0.13), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid var(--hz-border);
  box-shadow: 0 18px 45px rgba(7, 29, 51, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hz-ac-jump-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 29, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 29, 51, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
}

.hz-ac-jump-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 36px;
  width: 4px;
  height: 68px;
  border-radius: 0 999px 999px 0;
  background: var(--hz-orange);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hz-ac-jump-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 106, 33, 0.38);
  box-shadow: 0 26px 70px rgba(7, 29, 51, 0.13);
}

.hz-ac-jump-card:hover::after {
  opacity: 1;
}

.hz-ac-jump-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hz-ac-jump-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.1);
  color: var(--hz-orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hz-ac-jump-card h3 {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 32px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.hz-ac-jump-card p {
  max-width: 620px;
  color: var(--hz-text);
  font-size: 16px;
  line-height: 1.78;
  font-weight: 300;
}

.hz-ac-jump-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
  margin-bottom: 34px;
}

.hz-ac-jump-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--hz-border);
  color: var(--hz-light-text);
  font-size: 12px;
  font-weight: 600;
}

.hz-ac-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  color: var(--hz-orange);
  font-size: 14px;
  font-weight: 700;
}

.hz-ac-jump-link::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.hz-ac-jump-card:hover .hz-ac-jump-link::after {
  transform: translateX(6px);
}

.hz-ac-jump-card-dark {
  background:
    radial-gradient(circle at 88% 14%, rgba(242, 106, 33, 0.18), transparent 34%),
    linear-gradient(135deg, #071d33 0%, #0d304f 100%);
}

.hz-ac-jump-card-dark h3 {
  color: #ffffff;
}

.hz-ac-jump-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.hz-ac-jump-card-dark .hz-ac-jump-tags span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.hz-ac-jump-card-dark .hz-ac-jump-link {
  color: #ffffff;
}

@media (max-width: 980px) {
  .hz-ac-jump-grid {
    grid-template-columns: 1fr;
  }

  .hz-ac-jump-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hz-ac-jump-container {
    padding: 0 22px;
  }

  .hz-ac-jump-section {
    padding: 58px 0;
  }

  .hz-ac-jump-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .hz-ac-jump-desc {
    font-size: 16px;
  }

  .hz-ac-jump-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .hz-ac-jump-card h3 {
    font-size: 26px;
  }
}
