.np-main {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  min-height: calc(100vh - 400px);
}

.np-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ===== Animated 4-O-4 ===== */
.np-art {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.np-art__digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.np-art__num {
  font-family: "Montserrat", sans-serif;
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #14385c 0%, #257fc6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 24px rgba(20, 56, 92, 0.18);
}

.np-art__ball {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffa84a 0%, #fb8004 50%, #c25c00 100%);
  box-shadow: 0 14px 40px rgba(251, 128, 4, 0.45);
  position: relative;
  animation: npBounce 1.8s ease-in-out infinite;
}

.np-art__ball::before,
.np-art__ball::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.np-art__ball::after {
  inset: 28px;
  border-width: 2px;
}

.np-art__ball-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  border-radius: 4px;
}

@keyframes npBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-22px) rotate(90deg); }
  50% { transform: translateY(0) rotate(180deg); }
  75% { transform: translateY(-12px) rotate(270deg); }
}

.np-art__field {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 360px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.np-art__line {
  flex: 1;
  height: 4px;
  background: rgba(20, 56, 92, 0.12);
  border-radius: 2px;
  margin: 0 6px;
}

.np-art__line--center {
  background: #fb8004;
  flex: 0 0 60px;
}

/* ===== Text ===== */
.np-title {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #14385c;
  margin: 0 0 14px;
  line-height: 1.2;
}

.np-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: #6b7785;
  line-height: 1.6;
  margin: 0 0 36px;
}

/* ===== Actions ===== */
.np-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.np-btn {
  padding: 16px 36px !important;
  font-size: 16px !important;
  font-family: "Inter Tight", "Inter", sans-serif !important;
  font-weight: 600 !important;
}

.np-btn-outline {
  display: inline-block;
  padding: 16px 36px;
  border: 2px solid #14385c;
  color: #14385c;
  background: transparent;
  border-radius: 30px;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.np-btn-outline:hover {
  background: #14385c;
  color: #fff;
}

/* ===== Suggestions ===== */
.np-suggestions {
  padding-top: 40px;
  border-top: 1px solid #e9ecf1;
}

.np-suggestions__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #6b7785;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.np-suggestions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.np-suggestions__card {
  background: #fff;
  border: 1px solid #e9ecf1;
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  text-decoration: none;
  color: #14385c;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.np-suggestions__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 56, 92, 0.1);
  border-color: #fb8004;
}

.np-suggestions__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5e9;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .np-art__num { font-size: 110px; }
  .np-art__ball { width: 76px; height: 76px; }
  .np-art__ball-inner { height: 40px; }
  .np-title { font-size: 26px; }
  .np-subtitle { font-size: 15px; }
  .np-suggestions__grid { grid-template-columns: repeat(2, 1fr); }
  .np-btn, .np-btn-outline { width: 100%; padding: 14px 24px !important; }
  .np-actions { flex-direction: column; }
}
