.j-section-1-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #0f172a;
  max-width: 1700px;
  margin: 0 auto;
}
.j-section-1-container {
  width: 100%;
  position: relative;
}
@keyframes j-section-1-float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
.j-section-1-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid #f1f5f9;
  position: relative;
  z-index: 10;
}
.j-section-1-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.j-section-1-image-col {
  position: relative;
  height: 384px;
  background-color: #0f172a;
  overflow: hidden;
}
.j-section-1-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.8),
    transparent,
    transparent
  );
  z-index: 10;
}
.j-section-1-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-in-out;
}
.j-section-1-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}
.j-section-1-badge:hover {
  transform: translateY(-4px);
}
.j-section-1-badge-icon-box {
  background-color: #ad1919;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.j-section-1-badge-text-sm {
  font-size: 12px;
  color: #bfdbfe;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.j-section-1-badge-text-lg {
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.j-section-1-content-col {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.j-section-1-accent-line {
  width: 48px;
  height: 4px;
  background-color: #ad1919;
  margin-bottom: 32px;
  border-radius: 9999px;
}
.j-section-1-headline {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 24px;
}
.j-section-1-gradient-text {
  background-clip: text;
  color: #ac1919;
}
.j-section-1-lead {
  font-size: 16px;
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.625;
}
.j-section-1-features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.j-section-1-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: border-color 0.2s;
}
.j-section-1-feature-item:hover {
  border-color: #dbeafe;
}
.j-section-1-feature-icon-box {
  padding: 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.j-section-1-icon-green {
  background-color: #ad1919;
  color: white;
}
.j-section-1-icon-indigo {
  background-color: #ad1919;
  color: white;
}
.j-section-1-feature-title {
  font-weight: 700;
  color: #1e293b;
  font-size: 16px;
}
.j-section-1-feature-desc {
  font-size: 15px;
  color: #64748b;
  margin-top: 4px;
  line-height: 1.4;
}
.j-section-1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.j-section-1-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0f172a;
  color: white !important;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
}
.j-section-1-btn-primary:hover {
  background-color: #ad1919;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}
.j-section-1-btn-secondary {
  background: transparent;
  color: #475569;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.j-section-1-btn-secondary:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}
.j-section-1-svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.j-section-1-svg-lg {
  width: 24px;
  height: 24px;
}
.j-section-1-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.j-section-1-btn-primary:hover .j-section-1-arrow {
  transform: translateX(4px);
}
@media (min-width: 1024px) {
  .j-section-1-wrapper {
    padding: 50px 0;
  }
  .j-section-1-grid {
    grid-template-columns: 1fr 1fr;
  }
  .j-section-1-image-col {
    height: auto;
  }
  .j-section-1-content-col {
    padding: 64px;
  }
  .j-section-1-headline {
    font-size: 36px;
  }
}
.j-section-2-wrapper {
  background-color: #0f172a;
  color: #ffffff;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.j-section-2-art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 0;
}
.j-section-2-circle-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(15, 23, 42, 0) 70%
  );
}
.j-section-2-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(15, 23, 42, 0) 70%
  );
}
.j-section-2-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.j-section-2-header {
  text-align: center;
  margin-bottom: 15px;
}
.j-section-2-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  background-clip: text;
  color: white;
}
.j-section-2-subtitle {
  font-size: 16px;
  line-height: 1.6;
}
.j-section-2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.j-section-2-card {
  background-color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 15px 30px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.j-section-2-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}
.j-section-2-card-title {
  font-size: 20px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
}
.j-section-2-problem-text {
  font-size: 14px;
  color: #ad1919;
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.j-section-2-benefit-block {
  padding-left: 16px;
  border-left: 2px solid #3b82f6;
  margin-top: auto;
}
.j-section-2-benefit-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b82f6;
  margin-bottom: 4px;
  font-weight: 600;
}
.j-section-2-benefit-text {
  font-size: 16px;
  color: black;
  line-height: 1.5;
}
.j-section-2-svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 768px) {
  .j-section-2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .j-section-2-wrapper {
    padding: 45px 0;
  }
  .j-section-2-title {
    font-size: 31px;
  }
  .j-section-2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.j-section-3-wrapper {
  background-color: #ffffff;
  padding: 50px 0;
  color: #0f172a;
}
.j-section-3-container {
  max-width: 1500px;
  margin: 0 auto;
}
.j-section-3-header {
  text-align: center;
  margin-bottom: 30px;
}
.j-section-3-title {
  font-size: 31px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
}
.j-section-3-subtitle {
  font-size: 16px;
  color: #000000;
}
.j-section-3-table-container {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}
.j-section-3-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
@media (max-width: 700px) {
  .j-section-3-table {
    min-width: 100%;
  }
  .j-section-3-td-feature {
    width: 100% !important;
  }
}
.j-section-3-th {
  text-align: center;
  padding: 24px !important;
  background-color: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.j-section-3-th-highlight {
  background-color: #ad1919;
  color: #ffffff;
  border-bottom: 2px solid #1d4ed8;
  position: relative;
}
.j-section-3-th-highlight::after {
  content: "Recommended";
  position: absolute;
  top: 30%;
  left: 80%;
  transform: translateX(-50%);
  background-color: #1d4ed8;
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 9999px;
  font-weight: 700;
}
.j-section-3-tr {
  transition: background-color 0.2s;
}
.j-section-3-tr:hover {
  background-color: #f8fafc;
}
.j-section-3-td {
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: middle;
}
.j-section-3-td-feature {
  font-weight: 600;
  color: #0f172a;
  width: 20%;
}
@media (max-width: 992px) {
  .j-section-3-td-feature {
    width: 100%;
  }
}
.j-section-3-td-highlight {
  background-color: #eff6ff;
  color: #1e3a8a;
  font-weight: 600;
  border-bottom: 1px solid #dbeafe;
  border-left: 1px solid #dbeafe;
  border-right: 1px solid #dbeafe;
}
.j-section-3-tr:last-child .j-section-3-td {
  border-bottom: none;
}
.j-section-3-check-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.j-section-3-negative {
  color: #ad1919;
}
.j-section-3-positive {
  color: #16a34a;
  font-weight: 600;
}
.j-section-4-wrapper {
  background-color: #f1f5f9;
  padding: 60px 20px;
  color: #334155;
  position: relative;
}
.j-section-4-container {
  max-width: 1500px;
  margin: 0 auto;
}
.j-section-4-header-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: center;
}
.j-section-4-header-content {
  text-align: left;
}
.j-section-4-header-image-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  height: 400px;
  background-color: #0f172a;
}
.j-section-4-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.j-section-4-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: #ad2200;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.j-section-4-title {
  font-size: 35px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
}
.j-section-4-lead {
  font-size: 16px;
  line-height: 1.6;
}
.j-section-4-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.j-section-4-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.j-section-4-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}
.j-section-4-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: #eff6ff;
  color: #ad1919;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.j-section-4-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}
.j-section-4-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.j-section-4-list-item {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 16px;
  border-left: 2px solid #e2e8f0;
}
.j-section-4-highlight {
  font-weight: 600;
  color: #ad1919;
}
.j-section-4-span-2 {
  grid-column: span 1;
}
.j-section-4-storage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
  background-color: #f8fafc;
  padding: 16px;
  border-radius: 12px;
}
.j-section-4-option-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
  display: block;
}
.j-section-4-min-wrapper {
  border-top: 1px solid #cbd5e1;
  padding-top: 48px;
  margin-top: 24px;
}
.j-section-4-min-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.j-section-4-min-badge {
  background-color: #fff7ed;
  color: #c2410c;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ffedd5;
}
.j-section-4-min-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.j-section-4-min-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.j-section-4-min-label {
  font-size: 16px;
  text-transform: uppercase;
  color: #c2410c;
  font-weight: 700;
}
.j-section-4-min-val {
  font-size: 15px;
  font-weight: 500;
}
.j-section-4-svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 768px) {
  .j-section-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .j-section-4-span-2 {
    grid-column: span 2;
  }
  .j-section-4-storage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .j-section-4-min-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1024px) {
  .j-section-4-header-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.j-section-4-req-list-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.j-section-4-req-list-req-container {
  margin-bottom: 30px;
  text-align: center;
}
.j-section-4-req-list-main-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: #000;
}
.j-section-4-req-list-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 3rem;
}
.j-section-4-req-list-specs-panel {
  background: #fafafa;
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.j-section-4-req-list-specs-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #ad1919;
}
.j-section-4-req-list-spec-group {
  text-align: left;
  padding: 0 1rem;
  border-left: 2px solid #e5e5e5;
}
.j-section-4-req-list-spec-group:first-child {
  border-left: none;
}
.j-section-4-req-list-spec-head {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.j-section-4-req-list-spec-detail {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.j-section-4-req-list-spec-detail span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ad1919;
  margin-top: 4px;
}
.j-section-4-req-list-pricing-section {
  padding: 2rem 0;
}
.j-section-4-req-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
.j-section-4-req-list-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.j-section-4-req-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #ad1919;
}
.j-section-4-req-list-card.recommended {
  background: #111;
  color: #fff;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: none;
  z-index: 2;
}
.j-section-4-req-list-plan-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  margin-bottom: 0.5rem;
}
.j-section-4-req-list-cpu {
  font-size: 1rem;
  font-weight: 600;
  color: #ad1919;
  margin-bottom: 2rem;
  display: inline-block;
  background: rgba(239, 68, 68, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
}
.j-section-4-req-list-card.recommended .j-section-4-req-list-plan-title {
  color: #fff;
}
.j-section-4-req-list-card.recommended .j-section-4-req-list-cpu {
  background: #ad1919;
  color: #fff;
}
.j-section-4-req-list-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}
.j-section-4-req-list-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.j-section-4-req-list-card.recommended .j-section-4-req-list-features li {
  border-bottom-color: #333;
  color: #ccc;
}
.j-section-4-req-list-features li strong {
  margin-right: 6px;
  color: #000;
}
.j-section-4-req-list-card.recommended
  .j-section-4-req-list-features
  li
  strong {
  color: #fff;
}
.j-section-4-req-list-capacity {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #666;
}
.j-section-4-req-list-card.recommended .j-section-4-req-list-capacity {
  color: #999;
}
.j-section-4-req-list-action-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.j-section-4-req-list-action-btn:hover {
  background: #000;
  color: #fff;
}
.j-section-4-req-list-card.recommended .j-section-4-req-list-action-btn {
  background: #ad1919;
  border-color: #ad1919;
  color: #fff;
}
.j-section-4-req-list-card.recommended .j-section-4-req-list-action-btn:hover {
  background: #d32f2f;
  border-color: #d32f2f;
}
@media (max-width: 900px) {
  .j-section-4-req-list-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .j-section-4-req-list-specs-panel {
    grid-template-columns: 1fr;
    border-left: 4px solid #ad1919;
    padding: 2rem;
  }
  .j-section-4-req-list-specs-panel::before {
    display: none;
  }
  .j-section-4-req-list-spec-group {
    border-left: none;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
  }
  .j-section-4-req-list-spec-group:last-child {
    border-bottom: none;
  }
}
.j-section-5-wrapper {
  background-color: #0f172a;
  padding: 35px 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.j-section-5-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(173, 25, 25, 0.15) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
}
.j-section-5-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.j-section-5-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(to bottom, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.j-section-5-subtitle {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 400;
}
.j-section-5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #ad1919;
  color: white;
  padding: 10px 20px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(173, 25, 25, 0.3);
  cursor: pointer;
}
.j-section-5-btn:hover {
  background-color: #c92a2a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(173, 25, 25, 0.5);
}
.j-section-5-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.j-section-5-btn:hover .j-section-5-icon {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .j-section-5-title {
    font-size: 36px;
  }
  .j-section-5-btn {
    width: 100%;
    padding: 16px 24px;
  }
}
.j-blog-new-tbl-wrapper {
  margin: 20px auto;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.j-blog-new-tbl-container {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}
.j-blog-new-tbl-content {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.j-blog-new-tbl-head {
  background-color: #c12701;
}
.j-blog-new-tbl-header-cell {
  padding: 16px 24px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #2d3748;
}
.j-blog-new-tbl-body {
  background-color: #ffffff;
}
.j-blog-new-tbl-row {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}
.j-blog-new-tbl-row:last-child {
  border-bottom: none;
}
.j-blog-new-tbl-row:hover {
  background-color: #f7fafc;
}
.j-blog-new-tbl-row:nth-child(even) {
  background-color: #f8fafc;
}
.j-blog-new-tbl-row:nth-child(even):hover {
  background-color: #edf2f7;
}
.j-blog-new-tbl-cell {
  padding: 16px 24px;
  color: #4a5568;
  font-size: 16px;
  font-weight: 400;
  vertical-align: middle;
}
.j-blog-new-tbl-col-plan {
  font-weight: 600;
  color: #2d3748;
}
.j-blog-new-tbl-col-price {
  font-weight: 700;
  color: #16a34a;
  font-family: monospace;
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .j-blog-new-tbl-header-cell,
  .j-blog-new-tbl-cell {
    padding: 12px 16px;
    font-size: 14px;
  }
}
:root {
  --container-width: 1700px;
  --color-primary: #ad1919;
  --color-primary-hover: #8a1414;
  --color-primary-deep: #450a0a;
  --color-primary-soft: #fff5f5;
  --color-primary-border: #ffe3e3;
  --color-text-main: #0f172a;
  --color-text-body: #25282c;
  --color-text-muted: #94a3b8;
  --color-bg-white: #ffffff;
  --color-bg-light: #f8fafc;
  --color-bg-dark: #0f172a;
  --color-bg-black: #000000;
  --color-border-light: #e2e8f0;
  --color-border-dark: #1e293b;
}
.j-new-software-section-title span {
  color: var(--color-primary);
}
.j-new-software-sub-section-title {
  font-size: 25px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}
.j-new-software-section-header {
  text-align: center;
}
.j-new-software-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.j-new-software-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
}
.j-new-software-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
}
.j-new-software-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--color-text-main);
}
.j-new-software-logo span {
  color: var(--color-primary);
}
.j-new-software-nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-body);
}
.j-new-software-nav-link {
  transition: color 0.2s;
}
.j-new-software-nav-link:hover {
  color: var(--color-primary);
}
.j-new-software-btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 0.6rem 1.4rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(173, 25, 25, 0.2);
}
.j-new-software-btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}
.j-new-software-hero {
  padding-top: 9rem;
  padding-bottom: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-white);
}
.j-new-software-hero-bg-blob {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--color-primary-soft) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}
.j-new-software-hero-content {
  position: relative;
  z-index: 10;
}
.j-new-software-hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
  line-height: 1.1;
}
.j-new-software-hero-gradient-text {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-text-main) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.j-new-software-hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-body);
  max-width: 44rem;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}
.j-new-software-section-gray {
  padding: 5rem 0;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}
.j-new-software-section-header {
  text-center: center;
  margin-bottom: 4rem;
}
.j-new-software-section-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}
.j-new-software-section-desc {
  font-size: 16px;
}
.j-new-software-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.j-new-software-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.j-new-software-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.j-new-software-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}
.j-new-software-card:hover::before {
  transform: scaleX(1);
}
.j-new-software-card-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s;
  background-color: var(--color-primary-soft);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-border);
}
.j-new-software-card:hover .j-new-software-card-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary);
}
.j-new-software-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}
.j-new-software-card-text {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.j-new-software-card-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-primary);
  transition: color 0.2s;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.j-new-software-card-link:hover {
  color: var(--color-primary-deep);
}
.j-new-software-card-link svg {
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}
.j-new-software-card-link:hover svg {
  transform: translateX(4px);
}
.j-new-software-section-white {
  padding: 50px 0;
  background-color: var(--color-bg-white);
}
.j-new-software-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .j-new-software-text-grid {
    grid-template-columns: 1fr;
  }
}
.j-new-software-feature-block {
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--color-border-light);
  transition: border-color 0.3s ease;
}
.j-new-software-feature-block:hover {
  border-left-color: var(--color-primary);
}
.j-new-software-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.j-new-software-feature-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}
.j-new-software-feature-text {
  font-size: 16px;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.j-new-software-detail-block {
  margin-top: 1.25rem;
}
.j-new-software-detail-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
}
.j-new-software-detail-title i {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.5rem;
  color: var(--color-primary);
}
.j-new-software-detail-text {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.6;
  padding-left: 1.6rem;
}
.j-new-software-tools-block {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--color-border-light);
}
.j-new-software-tools-text {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.5;
}
.j-new-software-tools-text span {
  color: var(--color-text-main);
  font-weight: 700;
  margin-right: 0.5rem;
}
.j-new-software-specs-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  color: var(--color-bg-white);
}
.j-new-software-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.j-new-software-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.j-new-software-spec-icon {
  color: var(--color-primary);
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  font-size: 40px;
}
.j-new-software-spec-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-bg-white);
  margin-bottom: 0.25rem;
}
.j-new-software-spec-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.j-new-software-footer {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  border-top: 1px solid var(--color-border-dark);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .j-new-software-nav-links {
    display: flex;
  }
  .j-new-software-hero-title {
    font-size: 4rem;
  }
  .j-new-software-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .j-new-software-specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .j-new-software-cta-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .j-new-software-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .j-new-software-feature-row {
    flex-direction: row;
    gap: 5rem;
  }
  .j-new-software-feature-col {
    width: 50%;
  }
  .j-new-software-order-2-lg {
    order: 2;
  }
  .j-new-software-order-1-lg {
    order: 1;
  }
}
.j-new-link {
  color: var(--color-primary);
  font-weight: 500;
}
.j-new-link:hover {
  color: var(--color-primary-hover);
}
.j-new-game-section {
  width: 100%;
  padding: 0 80px 0 80px;
}
@media (max-width: 992px) {
  .j-new-game-section {
    padding: 0;
  }
}
.j-new-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.j-new-game-card {
  background-color: white;
  text-decoration: none;
  color: black;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.j-new-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.j-new-game-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.j-new-game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.j-new-game-card:hover .j-new-game-img {
  transform: scale(1.1);
}
.j-new-game-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #d93025;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.j-new-game-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}
.j-new-game-title {
  margin: 0 0 15px 0;
  font-size: 22px;
  font-weight: 700;
  color: black;
}
.j-new-game-desc {
  margin: 0 0 20px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}
.j-new-game-footer {
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.j-new-game-btn {
  display: inline-block;
  background: linear-gradient(10deg, #003b98, #0a86ff);
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}
.j-new-game-card:hover .j-new-game-btn {
  opacity: 0.9;
}
@media (max-width: 992px) {
  .j-new-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .j-new-game-grid {
    grid-template-columns: 1fr;
  }
}
.j-new-section-0-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.j-new-section-0-wrapper {
  width: 100%;
  background-color: white;
  padding: 0 80px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 992px) {
  .j-new-section-0-wrapper {
    padding: 0;
  }
}
.j-new-section-0-content-box {
  flex: 2;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
}
.j-new-section-0-heading {
  color: #003b98;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.j-new-section-0-paragraph {
  color: black;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.8;
}
@media (min-width: 992px) {
  .j-new-section-0-paragraph {
    max-width: 900px;
  }
}
.j-new-section-0-cta-btn {
  display: inline-block;
  background-color: #d93025;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease;
}
.j-new-section-0-cta-btn:hover {
  background-color: black;
}
.j-new-section-0-image-box {
  flex: 1;
  position: relative;
}
.j-new-section-0-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5%;
}
@media (max-width: 768px) {
  .j-new-section-0-wrapper {
    flex-direction: column-reverse;
  }
  .j-new-section-0-content-box {
    padding: 40px 20px;
    text-align: center;
  }
  .j-new-section-0-cta-btn {
    margin: 0 auto;
  }
  .j-new-section-0-image-box {
    height: 300px;
  }
}
.j-new-control-section {
  background-color: white;
  padding: 60px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.j-new-control-container {
  padding: 0 80px;
  width: 100%;
}
@media (max-width: 992px) {
  .j-new-control-container {
    padding: 0;
  }
}
.j-new-control-header {
  text-align: center;
  margin-bottom: 50px;
}
.j-new-control-main-title {
  font-size: 2.5rem;
  color: black;
  font-weight: 700;
  margin-bottom: 15px;
}
.j-new-control-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.j-new-control-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}
.j-new-control-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  position: relative;
}
.j-new-control-img-wrapper {
  height: 160px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
}
.j-new-control-img-icon {
  width: 200px;
  height: 200px;
  fill: #003b98;
  object-fit: contain;
}
.j-new-control-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.j-new-control-tag-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 5px;
  font-weight: 600;
}
.j-new-control-tag {
  color: #d93025;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}
.j-new-control-title {
  font-size: 1.5rem;
  color: black;
  font-weight: 700;
  margin-bottom: 12px;
}
.j-new-control-desc {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}
.j-new-control-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 12px 24px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(10deg, #003b98, #0a86ff);
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}
.j-new-control-btn:hover {
  color: #d93025;
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(10, 134, 255, 0.3);
}
@media (max-width: 768px) {
  .j-new-control-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  .j-new-control-main-title {
    font-size: 2rem;
  }
}
.j-new-control-ctc-section {
  background: linear-gradient(10deg, #003b98, #0a86ff);
  color: white;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 16px;
}
.j-new-control-ctc-wrapper {
  max-width: 1000px;
  width: 100%;
}
.j-new-control-ctc-headline {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.j-new-control-ctc-subheadline {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.j-new-control-ctc-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.j-new-control-ctc-btn {
  background-color: #d93025;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 6px;
  border: 2px solid #d93025;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: inline-block;
  cursor: pointer;
}
.j-new-control-ctc-btn:hover {
  background-color: #b92b1f;
  color: black;
  border-color: #b92b1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.j-new-control-ctc-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.j-new-control-ctc-link {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s;
}
.j-new-control-ctc-link:hover {
  color: #000;
  opacity: 1;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .j-new-control-ctc-headline {
    font-size: 40px;
  }
  .j-new-control-ctc-subheadline {
    font-size: 18px;
    padding: 0 40px;
  }
}
.j-new-tool-wrapper {
  --j-container-width: 1700px;
  --j-color-primary: #ad1919;
  --j-color-primary-hover: #8a1414;
  --j-color-primary-deep: #450a0a;
  --j-color-primary-soft: #fff5f5;
  --j-color-primary-border: #ffe3e3;
  --j-color-text-main: #0f172a;
  --j-color-text-body: #25282c;
  --j-color-text-muted: #64748b;
  --j-color-bg-white: #ffffff;
  --j-color-bg-light: #f8fafc;
  --j-color-border-light: #e2e8f0;
  padding: 0 80px;
}
@media (max-width: 992px) {
  .j-new-tool-wrapper {
    padding: 0;
  }
}
.j-new-tool-section {
  background-color: var(--j-color-bg-white);
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.j-new-tool-container {
  max-width: var(--j-container-width);
  margin: 0 auto;
  width: 100%;
}
.j-new-tool-header {
  margin-bottom: 50px;
  display: grid;
  gap: 40px;
  align-items: center;
  justify-items: center;
}
@media (min-width: 992px) {
  .j-new-tool-header {
    grid-template-columns: 1.2fr 1fr;
  }
}
.j-new-tool-sublabel {
  display: inline-block;
  color: var(--j-color-primary);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background-color: var(--j-color-primary-soft);
  padding: 6px 12px;
  border-radius: 4px;
}
.j-new-tool-header-image-container {
  width: 60%;
  border: 1px solid var(--j-color-border-light);
  border-radius: 16px;
}
.j-new-tool-header-image-container img {
  width: 100%;
  border-radius: 10px;
}
.j-new-tool-placeholder-content {
  text-align: center;
  color: var(--j-color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.j-new-tool-placeholder-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
  stroke: currentColor;
  stroke-width: 1.5;
}
.j-new-tool-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .j-new-tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .j-new-tool-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.j-new-tool-card {
  background-color: var(--j-color-bg-light);
  border: 1px solid var(--j-color-border-light);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.j-new-tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--j-color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.j-new-tool-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 10px 10px -5px rgba(0, 0, 0, 0.01);
  border-color: var(--j-color-primary-border);
  background-color: var(--j-color-bg-white);
}
.j-new-tool-card:hover::before {
  transform: scaleX(1);
}
.j-new-tool-icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--j-color-primary-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--j-color-primary);
  font-size: 24px;
}
.j-new-tool-icon-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.j-new-tool-card-title {
  color: var(--j-color-text-main);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.j-new-tool-card-text {
  color: #202020;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.j-new-tool-highlight {
  color: var(--j-color-primary) !important;
  font-weight: 600;
}
@media (max-width: 768px) {
  .j-new-tool-title {
    font-size: 2rem;
  }
  .j-new-tool-section {
    padding: 60px 16px;
  }
}
.j-new-intro-wrapper {
  background-color: #ffffff;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  line-height: 1.5;
}
.j-new-intro-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
.j-new-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .j-new-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.j-new-intro-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.j-new-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fef2f2;
  color: #ad1919;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}
.j-new-intro-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .j-new-intro-title {
    font-size: 3rem;
  }
}
.j-new-intro-highlight {
  color: #ad1919;
}
.j-new-intro-description {
  font-size: 16px;
  line-height: 1.6;
}
.j-new-intro-box {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}
.j-new-intro-bold {
  font-weight: 700;
  color: #0f172a;
}
.j-new-intro-brand {
  font-weight: 600;
  color: #ad1919;
}
.j-new-intro-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .j-new-intro-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.j-new-intro-feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.j-new-intro-feature-item i {
  font-size: 20px;
}
.j-new-intro-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background-color: #fef2f2;
  color: #ad1919;
}
.j-new-intro-feature-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
}
.j-new-intro-feature-desc {
  font-size: 15px;
}
.j-new-intro-cta {
  margin-top: 1rem;
}
.j-new-intro-btn {
  background-color: #0f172a;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.j-new-intro-btn:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.j-new-intro-image-area {
  position: relative;
}
.j-new-intro-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid #122a4c;
  z-index: 10;
}
.j-new-intro-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.j-new-intro-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
}
.j-new-intro-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.j-new-intro-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  margin-bottom: 0.5rem;
}
.j-new-intro-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.j-new-intro-status-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.j-new-intro-overlay-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}
.j-new-intro-float {
  position: absolute;
  top: 2.5rem;
  left: -1.5rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  z-index: 20;
  display: none;
}
@media (min-width: 768px) {
  .j-new-intro-float {
    display: block;
  }
}
.j-new-intro-float-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.j-new-intro-float-icon-box {
  background-color: #fef2f2;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #ad1919;
  display: flex;
}
.j-new-intro-float-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
}
.j-new-intro-float-value {
  font-weight: 700;
  color: #1e293b;
}
.j-new-intro-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.7;
  z-index: 0;
  animation: blob 7s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.j-new-why-section {
  padding: 60px 20px;
  background-color: #f8fafc;
  display: flex;
  justify-content: center;
}
.j-new-why-container {
  max-width: 1500px;
  width: 100%;
}
.j-new-why-header {
  text-align: center;
  margin: 0 auto 30px auto;
}
.j-new-why-badge {
  display: inline-block;
  background-color: #e2e8f0;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.j-new-why-title {
  font-size: 31px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}
.j-new-why-subtitle {
  font-size: 16px;
  line-height: 1.6;
}
.j-new-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 992px) {
  .j-new-why-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.j-new-why-card {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}
.j-new-why-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e2e8f0;
}
.j-new-why-icon-box {
  width: 60px;
  height: 60px;
  background-color: #fef2f2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ad1919;
  font-size: 24px;
  margin-bottom: 24px;
}
.j-new-why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.j-new-why-card-desc {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
}
.j-new-why-text-brand {
  color: #ad1919;
  font-weight: 600;
}
.i-bnrs-img img {
  border-radius: 50px !important;
}
.j-new-99-faq-section-wrapper {
  max-width: 1700px;
  margin: 0 auto;
  padding: 40px 0;
}
.j-new-99-faq-section-title {
  text-align: center;
  font-size: 31px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 50px;
}
.j-new-99-faq-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 768px) {
  .j-new-99-faq-section-grid {
    grid-template-columns: 1fr;
  }
}
.j-new-99-faq-section-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.j-new-99-faq-section-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.j-new-99-faq-section-question {
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
  list-style: none;
}
.j-new-99-faq-section-question::-webkit-details-marker {
  display: none;
}
.j-new-99-faq-section-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: #d93025;
  transition: transform 0.3s ease;
  display: inline-block;
  line-height: 1;
}
details[open].j-new-99-faq-section-item .j-new-99-faq-section-question::after {
  content: "−";
  transform: rotate(180deg);
}
.j-new-99-faq-section-answer {
  padding: 0 20px 20px 20px;
  color: #292929;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  margin-top: 5px;
  padding-top: 15px;
}
details[open] .j-new-99-faq-section-question {
  color: #ad1919;
}
.j-new-99-faq-section-answer {
  padding: 0 20px;
  color: #3e3c3c;
  line-height: 1.6;
  border-top: 1px solid transparent;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
details[open] .j-new-99-faq-section-answer {
  max-height: 400px;
  opacity: 1;
  padding: 15px 20px 20px 20px;
  margin-top: 5px;
  border-top-color: #f1f5f9;
}
.j-new-99-dark-section {
  background: #1f2937;
}
.j-new-99-hero-section-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 0.5px,
    transparent 0.5px
  );
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.j-new-99-hero-section-container {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding-top: 25px;
  padding-bottom: 30px;
}
.j-new-99-hero-section-content {
  flex: 1;
  width: 60%;
  padding-inline: 25px;
}
.j-new-99-hero-section-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.j-new-99-hero-section-breadcrumb a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.j-new-99-hero-section-breadcrumb a:hover {
  color: #ad1919;
}
.j-new-99-hero-section-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}
.j-new-99-hero-section-breadcrumb .current {
  color: #ffbaba;
  font-weight: 600;
  font-size: 16px;
}
.j-new-99-hero-section-title {
  font-size: 35px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 24px 0;
}
.j-new-99-hero-section-title span {
  color: #cb3333;
}
.j-new-99-hero-section-desc {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 20px 0;
  opacity: 0.9;
}
.j-new-99-hero-section-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.j-new-99-hero-section-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f3f4f6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.j-new-99-hero-section-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ad1919;
  color: #ffffff !important;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
}
.j-new-99-hero-section-actions {
  display: flex;
  gap: 20px;
}
.j-new-99-hero-section-btn-primary {
  background-color: #ad1919;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(173, 25, 25, 0.3);
  border: 2px solid #ad1919;
}
.j-new-99-hero-section-btn-primary:hover {
  background-color: #8a1414;
  border-color: #8a1414;
  box-shadow: 0 6px 20px rgba(173, 25, 25, 0.4);
  color: #ffffff;
}
.j-new-99-hero-section-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}
.j-new-99-hero-section-btn-secondary:hover {
  background-color: #ffffff;
  color: #111827;
}
.j-new-99-hero-section-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .j-new-99-hero-section-visual {
    display: none;
  }
}
.j-new-99-hero-section-graphic {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
}
.j-new-99-hero-section-server-box {
  background: #1f2937;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(31, 41, 55, 0.2);
  position: absolute;
  width: 80%;
  right: 0;
  top: 50px;
  z-index: 2;
}
.j-new-99-hero-section-server-line {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}
.j-new-99-hero-section-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ad1919;
  box-shadow: 0 0 8px #ad1919;
  animation: blink 2s infinite;
}
.j-new-99-hero-section-led:nth-child(2) {
  animation-delay: 0.5s;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}
.j-new-99-hero-section-led:nth-child(3) {
  animation-delay: 1s;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}
.j-new-99-hero-section-accent-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #ad1919;
  border-radius: 30px;
  transform: rotate(45deg);
  z-index: 1;
  left: 20px;
  top: 20px;
  opacity: 0.3;
  pointer-events: none;
}
.j-new-99-hero-section-accent-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 4px solid #ad1919;
  border-radius: 50%;
  z-index: 1;
  right: 0;
  bottom: 30px;
  opacity: 0.15;
  pointer-events: none;
}
.j-new-99-hero-section-server-image {
  width: 90%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  animation: floatImage 6s ease-in-out infinite;
  border: 4px solid #afafaf;
}
@media (max-width: 992px) {
  .j-new-99-hero-section-container {
    flex-direction: column;
    text-align: center;
  }
  .j-new-99-hero-section-content {
    width: 100%;
  }
  .j-new-99-hero-section-breadcrumb {
    justify-content: center;
  }
  .j-new-99-hero-section-title {
    font-size: 2.8rem;
  }
  .j-new-99-hero-section-features {
    justify-content: center;
  }
  .j-new-99-hero-section-actions {
    justify-content: center;
  }
  .j-new-99-hero-section-visual {
    width: 100%;
    margin-top: 40px;
  }
  .j-new-99-hero-section-server-box {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
  }
}
@media (max-width: 576px) {
  .j-new-99-hero-section-title {
    font-size: 2.2rem;
  }
  .j-new-99-hero-section-actions {
    flex-direction: column;
  }
  .j-new-99-hero-section-btn-primary,
  .j-new-99-hero-section-btn-secondary {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}
.j-new-99-package-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}
.j-new-99-package-main-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 60px;
  line-height: 1.2;
}
.j-new-99-package-main-title span {
  color: #ad1919;
}
.j-new-99-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.j-new-99-package-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.j-new-99-package-card-popular {
  border-color: #ad1919;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(173, 25, 25, 0.1);
}
.j-new-99-package-popular-badge {
  position: absolute;
  top: 0;
  right: 30px;
  background: #ad1919;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.j-new-99-package-tier {
  display: inline-block;
  background: rgba(173, 25, 25, 0.1);
  color: #ad1919;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.j-new-99-package-name {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}
.j-new-99-package-bestfor {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 30px 0;
  flex-grow: 1;
}
.j-new-99-package-bestfor strong {
  color: #000000;
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}
.j-new-99-package-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;
}
.j-new-99-package-specs li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #1f2937;
  font-weight: 500;
}
.j-new-99-package-specs li:last-child {
  margin-bottom: 0;
}
.j-new-99-package-specs li i {
  color: #ad1919;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}
.j-new-99-package-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.j-new-99-package-btn-outline {
  background: transparent;
  color: #1f2937;
  border: 2px solid #1f2937;
}
.j-new-99-package-btn-outline:hover {
  background: #1f2937;
  color: #ffffff;
  border-color: #1f2937;
}
.j-new-99-package-btn-primary {
  background: #ad1919;
  color: #ffffff;
  border: 2px solid #ad1919;
  box-shadow: 0 4px 15px rgba(173, 25, 25, 0.2);
}
.j-new-99-package-btn-primary:hover {
  background: #8a1414;
  border-color: #8a1414;
  color: white;
}
@media (max-width: 768px) {
  .j-new-99-package-main-title {
    font-size: 2rem;
  }
  .j-new-99-package-wrapper {
    padding: 60px 20px;
  }
}
.j-new-99-tutorial-container {
  max-width: 1200px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.j-new-99-tutorial-image-col {
  flex: 1;
  position: relative;
}
.j-new-99-tutorial-image-wrapper {
  position: relative;
  z-index: 2;
}
.j-new-99-tutorial-image-wrapper img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: block;
  transition: transform 0.3s ease;
}
.j-new-99-tutorial-image-wrapper img:hover {
  transform: scale(1.02);
}
.j-new-99-tutorial-image-bg {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px dashed #ad1919;
  border-radius: 16px;
  z-index: 1;
  background-color: rgba(173, 25, 25, 0.03);
}
.j-new-99-tutorial-content-col {
  flex: 1;
}
.j-new-99-tutorial-badge {
  display: inline-block;
  background: rgba(173, 25, 25, 0.1);
  color: #ad1919;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.j-new-99-tutorial-title {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}
.j-new-99-tutorial-desc {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 30px;
}
.j-new-99-tutorial-btn {
  display: inline-block;
  background: #1f2937;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 2px solid #1f2937;
}
.j-new-99-tutorial-btn:hover {
  background: #ad1919;
  border-color: #ad1919;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(173, 25, 25, 0.2);
}
@media (max-width: 992px) {
  .j-new-99-tutorial-container {
    flex-direction: column;
    text-align: center;
  }
  .j-new-99-tutorial-image-bg {
    top: -10px;
    left: -10px;
  }
}
@media (max-width: 768px) {
  .j-new-99-package-main-title {
    font-size: 2rem;
  }
  .j-new-99-package-wrapper {
    padding: 60px 20px;
  }
  .j-new-99-promo-wrapper {
    padding: 60px 20px;
  }
}
.j-new-dedicated-server-use-case-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 50px 10px;
}
.j-new-dedicated-server-use-case-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}
.j-new-dedicated-server-use-case-maintitle {
  font-size: 35px;
  color: #000000;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.j-new-dedicated-server-use-case-maintitle span {
  color: #ad1919;
}
.j-new-dedicated-server-use-case-description {
  font-size: 17px;
  color: #000000;
  line-height: 1.8;
  font-weight: 400;
}
.j-new-dedicated-server-use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.j-new-dedicated-server-use-case-card {
  background-color: #1f2937;
  border: 1px solid #3d1f1f;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.j-new-dedicated-server-use-case-card:hover {
  border-color: #ad1919;
  box-shadow: 0 20px 40px rgba(230, 0, 0, 0.15);
}
.j-new-dedicated-server-use-case-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(230, 0, 0, 0.15) 0%,
    rgba(10, 2, 2, 0) 70%
  );
  z-index: -1;
  border-radius: 50%;
  transition: all 0.5s ease;
  opacity: 0;
}
.j-new-dedicated-server-use-case-card:hover::after {
  opacity: 1;
  transform: scale(1.5);
}
.j-new-dedicated-server-use-case-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(230, 0, 0, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ad1919;
  font-size: 28px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}
.j-new-dedicated-server-use-case-card:hover
  .j-new-dedicated-server-use-case-icon-wrapper {
  background: #ad1919;
  color: #ffffff;
  transform: scale(1.05) rotate(-5deg);
  border-radius: 16px;
}
.j-new-dedicated-server-use-case-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.j-new-dedicated-server-use-case-text {
  color: #e9e1e1;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
.j-new-dedicated-server-use-case-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ad1919;
  margin-top: 15px;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.j-new-dedicated-server-use-case-card:hover
  .j-new-dedicated-server-use-case-title::after {
  width: 60px;
}
@media (max-width: 991px) {
  .j-new-dedicated-server-use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .j-new-dedicated-server-use-case-maintitle {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .j-new-dedicated-server-use-case-section {
    padding: 70px 20px;
  }
  .j-new-dedicated-server-use-case-grid {
    grid-template-columns: 1fr;
  }
  .j-new-dedicated-server-use-case-maintitle {
    font-size: 28px;
  }
}
.j-new-99-dedicated-banner-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.j-new-99-dedicated-banner-container {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  z-index: 10;
}
@media (min-width: 1024px) {
  .j-new-99-dedicated-banner-container {
    grid-template-columns: 4fr 8fr;
    gap: 3rem;
  }
}
.j-new-99-dedicated-banner-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 20%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.j-new-99-dedicated-banner-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #111827;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .j-new-99-dedicated-banner-title {
    font-size: 3rem;
  }
}
.j-new-99-dedicated-banner-title-highlight {
  background: linear-gradient(to right, #dc2626, #460303);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.j-new-99-dedicated-banner-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  margin-bottom: 2rem;
  max-width: 32rem;
}
.j-new-99-dedicated-banner-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.j-new-99-dedicated-banner-btn-primary {
  background-color: #111111;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
  display: flex;
  align-items: center;
}
.j-new-99-dedicated-banner-btn-primary:hover {
  background-color: #b91c1c;
}
.j-new-99-dedicated-banner-btn-primary i {
  margin-left: 0.75rem;
}
.j-new-99-dedicated-banner-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  width: 100%;
}
.j-new-99-dedicated-banner-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}
.j-new-99-dedicated-banner-stat-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: #111827;
}
.j-new-99-dedicated-banner-stat-value.highlight {
  color: #ad1919;
  font-size: 1.5rem;
  line-height: 2.25rem;
}
.j-new-99-dedicated-banner-stat-sub {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.j-new-99-dedicated-banner-right {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
}
@media (min-width: 1024px) {
  .j-new-99-dedicated-banner-right {
    padding-top: 0;
  }
}
.j-new-99-dedicated-banner-map-container {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 100%;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.j-new-99-dedicated-banner-map-zoom-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
  transform-origin: center center;
}
.j-new-99-dedicated-banner-svg-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0.4;
  filter: contrast(200%) brightness(75%);
  pointer-events: none;
  transform: scale(1.05);
}
.j-new-99-dedicated-banner-pins-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.j-new-99-dedicated-banner-pin-wrapper {
  position: absolute;
  cursor: pointer;
  transition:
    opacity 0.5s,
    transform 0.5s,
    z-index 0s;
  text-decoration: none !important;
}
.j-new-99-dedicated-banner-pin-wrapper.j-active {
  z-index: 50;
  opacity: 1;
  transform: scale(1.1);
}
.j-new-99-dedicated-banner-pin-wrapper.j-inactive {
  z-index: 0;
  opacity: 0.1;
  transform: scale(1);
}
.j-new-99-dedicated-banner-pin-scaler {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1s;
}
.j-new-99-dedicated-banner-pin-badge {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all 0.3s;
}
.j-new-99-dedicated-banner-pin-badge img {
  width: 16px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .j-new-99-dedicated-banner-pin-badge img {
    width: 20px;
  }
}
.j-new-99-dedicated-banner-pin-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .j-new-99-dedicated-banner-pin-text {
    font-size: 12px;
  }
}
.j-new-99-dedicated-banner-pin-wrapper.j-active
  .j-new-99-dedicated-banner-pin-text {
  color: #000000;
}
.j-new-99-dedicated-banner-pin-wrapper.j-inactive
  .j-new-99-dedicated-banner-pin-text {
  color: #6b7280;
}
.j-new-99-dedicated-banner-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -1rem);
  background-color: #dc2626;
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 50;
  font-weight: 600;
}
@media (min-width: 768px) {
  .j-new-99-dedicated-banner-tooltip {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.j-new-99-dedicated-banner-pin-wrapper:hover {
  z-index: 999 !important;
}
.j-new-99-dedicated-banner-pin-wrapper:hover
  .j-new-99-dedicated-banner-tooltip {
  opacity: 1;
  z-index: 1000;
}
.j-new-99-dedicated-banner-tabs-container {
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  padding-right: 1.5rem;
  z-index: 30;
}
.j-new-99-dedicated-banner-tabs-container::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: calc(1.5rem + 6px);
  width: 2px;
  background-color: #d1d5db;
  z-index: 0;
}
.j-new-99-dedicated-banner-tab-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  z-index: 1;
}
.j-new-99-dedicated-banner-tab-label {
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}
.j-new-99-dedicated-banner-tab-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #9ca3af;
  background-color: #f9fafb;
  transition: all 0.3s;
  position: relative;
  flex-shrink: 0;
}
.j-new-99-dedicated-banner-tab-btn.j-active
  .j-new-99-dedicated-banner-tab-label {
  color: #dc2626;
}
.j-new-99-dedicated-banner-tab-btn.j-active .j-new-99-dedicated-banner-tab-dot {
  border-color: #dc2626;
  background-color: #dc2626;
  box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.2);
}
.j-new-99-dedicated-banner-tab-btn.j-inactive:hover
  .j-new-99-dedicated-banner-tab-label {
  color: #111827;
}
.j-new-99-dedicated-banner-tab-btn.j-inactive:hover
  .j-new-99-dedicated-banner-tab-dot {
  border-color: #4b5563;
}
.j-new-99-dedicated-banner-stats {
  padding-top: 2rem;
  width: 100%;
}
.j-stats-glass-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #141414;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 20px 40px;
  gap: 2rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: fit-content;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
@media (max-width: 768px) {
  .j-stats-glass-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1rem;
    gap: 1.5rem;
  }
}
.j-glass-stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.j-glass-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.j-icon-cyan-bg {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}
.j-icon-red-bg {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}
.j-glass-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
}
@media (max-width: 768px) {
  .j-glass-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0)
    );
  }
}
.j-glass-stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.j-glass-stat-label {
  font-size: 15px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.j-glass-value-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.j-glass-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.j-highlight-text {
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
  color: white;
}
.j-glass-stat-sub {
  font-size: 0.875rem;
  color: #6b7280;
}
.j-glass-stat-sub-bottom {
  font-size: 14px;
  color: #ef4444;
  font-weight: 600;
  margin-top: 0.25rem;
}
.j-glass-live-ring {
  width: 12px;
  height: 12px;
  background-color: #ef4444;
  border-radius: 50%;
  position: relative;
}
.j-glass-live-ring::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid #ef4444;
  border-radius: 50%;
  animation: ripple-out 2s infinite ease-in-out;
}
@keyframes ripple-out {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.j-continent-dropdown {
  display: none;
  padding: 4px 8px;
  border-radius: 8px;
  border: 2px solid #dc2626;
  background: #ffffff;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1399px) {
  .j-new-99-dedicated-banner-left {
    margin-left: 10%;
  }
  .j-new-99-dedicated-banner-tabs-container {
    top: 20px !important;
    right: 20px !important;
    transform: none !important;
    position: absolute !important;
  }
  .j-new-99-dedicated-banner-tabs-container::before,
  .j-new-99-dedicated-banner-tab-btn {
    display: none !important;
  }
  .j-continent-dropdown {
    display: block !important;
  }
}
.j-custom-select-wrapper {
  display: none;
  position: relative;
  width: 200px;
  user-select: none;
}
.j-custom-select-trigger {
  background: #ffffff;
  color: #111827;
  padding: 4px 8px;
  border-radius: 8px;
  border: 2px solid #dc2626;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.j-custom-select-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #dc2626;
  transition: transform 0.3s;
}
.j-custom-select-wrapper.open .j-custom-select-trigger::after {
  transform: rotate(180deg);
}
.j-custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 200;
  overflow: hidden;
}
.j-custom-select-wrapper.open .j-custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.j-custom-option {
  padding: 4px 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.j-custom-option:hover {
  background: #fef2f2;
  color: #dc2626;
}
.j-custom-option.selected {
  background: #dc2626;
  color: #ffffff;
}
@media (max-width: 1399px) {
  .j-custom-select-wrapper {
    display: block;
  }
}
@media (min-width: 993px) {
  .j-mobile-only-regions {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .j-new-99-dedicated-banner-right {
    display: none !important;
  }
  .j-desktop-only-focus {
    display: none !important;
  }
  .j-mobile-only-regions {
    display: flex !important;
    width: 100%;
  }
  .j-new-99-dedicated-banner-left {
    margin-left: 0 !important;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 20px;
  }
  .j-new-99-dedicated-banner-stats {
    justify-content: center;
    border-top: none;
  }
  .j-stats-glass-panel {
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    padding: 25px;
  }
  .j-glass-divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
}
.j-region-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.3s;
}
.j-region-link:hover {
  color: #ef4444;
}
.j-region-link.active {
  color: #ef4444;
}
.j-new-dedicated-server-icon-bar {
  padding: 5px 0;
  margin: 0 auto;
  max-width: 1650px;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.j-new-dedicated-server-icon-bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.j-new-dedicated-server-icon-bar-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
}
.j-new-dedicated-server-icon-bar i {
  font-size: 18px;
  color: #dc2626;
}
.j-new-dedicated-server-icon-bar-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .j-new-dedicated-server-icon-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .j-new-dedicated-server-icon-bar {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.j-new-dedicated-server-intro-container {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.j-new-dedicated-server-intro-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.j-new-dedicated-server-intro-image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.j-new-dedicated-server-intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.j-new-dedicated-server-title-container {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 20px auto;
}
.j-new-dedicated-server-title-container h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.j-new-dedicated-server-title-container h2 span {
  color: #dc2626;
}
.j-new-dedicated-server-title-container p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.j-new-dedicated-server-intro-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.j-new-dedicated-server-intro-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.j-new-dedicated-server-intro-icon {
  background-color: #eff6ff;
  color: #dc2626;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.j-new-dedicated-server-intro-list-text {
  font-size: 1.05rem;
  line-height: 1.5;
  padding-top: 2px;
}
.j-new-dedicated-server-intro-list-text strong {
  color: #0f172a;
  font-weight: 700;
}
@media (max-width: 992px) {
  .j-new-dedicated-server-intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }
  .j-new-dedicated-server-title-container h2 {
    font-size: 2.25rem;
  }
  .j-new-dedicated-server-intro-image-wrapper img {
    min-height: auto;
  }
}
@media (max-width: 600px) {
  .j-new-dedicated-server-title-container h2 {
    font-size: 1.875rem;
  }
  .j-new-dedicated-server-intro-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .j-new-dedicated-server-intro-list-text {
    font-size: 0.95rem;
  }
}
.j-new-99-location-country-wrapper {
  padding: 20px;
  position: relative;
  z-index: 999;
}
.j-new-99-location-country-wrapper::before {
  position: relative;
  z-index: 1;
}
.j-new-99-location-country-header {
  text-align: center;
  margin-bottom: 40px;
}
.j-new-99-location-country-title {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.j-new-99-location-country-subtitle {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 1700px;
}
.j-new-99-location-country-search-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1000;
}
.j-new-99-location-country-search-input {
  width: 500px;
  padding: 14px 25px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1001;
  background-color: #fff;
}
.j-new-99-location-country-search-input:focus {
  border-color: #a02c2c;
  box-shadow: 0 4px 20px rgba(160, 44, 44, 0.15);
}
.j-new-99-location-country-layout {
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 900;
  align-items: flex-start !important;
}
.j-new-99-location-country-sidebar {
  width: 260px;
  background: #fcfcfc;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: fit-content;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  z-index: 50;
}
.j-new-99-location-country-nav-item {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  text-decoration: none;
  color: #ffffff;
  background: #1f2937;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.j-new-99-location-country-nav-item:first-child {
  border-radius: 12px 12px 0 0;
}
.j-new-99-location-country-nav-item:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}
.j-new-99-location-country-nav-item:hover {
  color: #961b1b;
  background: #c7c7c7;
}
.j-new-99-location-country-nav-item.active {
  background: linear-gradient(90deg, #152238 0%, #20406b 100%);
  color: white !important;
  box-shadow: 2px 0 10px rgba(32, 64, 107, 0.4);
  border-radius: 8px;
  margin-left: -10px;
  padding-left: 35px;
  z-index: 2;
  border-left: 6px solid #961b1b;
}
.j-new-99-location-country-nav-item.active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 22px;
  height: 22px;
  background: #20406b;
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
  border-radius: 4px;
  box-shadow: 3px -3px 5px rgba(32, 64, 107, 0.2);
}
.j-new-99-location-country-icon {
  font-size: 22px;
  margin-right: 12px;
  width: 22px;
  text-align: center;
  transition: 0.3s ease;
}
.j-new-99-location-country-nav-item.active .j-new-99-location-country-icon {
  opacity: 1;
}
.j-new-99-location-country-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-content: start;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.j-new-99-location-country-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/world.svg") no-repeat center center;
  background-size: cover;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.j-new-99-location-country-grid > * {
  position: relative;
  z-index: 1;
}
.j-new-99-location-country-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  position: relative;
  min-height: 220px;
  transition:
    transform 0.5s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.j-new-99-location-country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.j-new-99-location-country-btn i {
  transition: all 0.3s ease-in-out;
}
.j-new-99-location-country-card:hover .j-new-99-location-country-btn i {
  transform: translateX(10px);
}
.j-new-99-location-country-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.j-new-99-location-country-flag {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.j-new-99-location-country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.j-new-99-location-country-name {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
}
.j-new-99-location-country-desc {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
}
.j-new-99-location-country-btn {
  position: absolute;
  bottom: -10px;
  right: 20px;
  background: linear-gradient(90deg, #961b1b 0%, #b82a2a 100%);
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(184, 42, 42, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}
.j-new-99-location-country-btn:hover {
  box-shadow: 0 6px 15px rgba(184, 42, 42, 0.4);
  background: #1f2937;
  color: white !important;
}
.j-new-99-location-country-no-results {
  grid-column: span 3;
  text-align: center;
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  color: #777;
  font-size: 18px;
  display: none;
}
@media (max-width: 1024px) {
  .j-new-99-location-country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .j-new-99-location-country-layout {
    flex-direction: column;
  }
  .j-new-99-location-country-sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
    position: relative;
    top: auto;
    border-radius: 8px;
    flex-direction: column;
  }
  .j-new-99-location-country-nav-item {
    border-bottom: none;
    border-right: 1px solid #f0f0f0;
    white-space: nowrap;
  }
  .j-new-99-location-country-nav-item.active::after {
    display: none;
  }
  .j-new-99-location-country-search-input {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .j-new-99-location-country-grid {
    grid-template-columns: 1fr;
  }
}
.span {
  color: #b82a2a;
}
.section {
  padding: 50px 20px;
}
.dark-section {
  background-color: #f8fafc;
}
.j-new-99-dedicated-servers-solution-container {
  max-width: 1700px;
  margin: 0 auto;
}
.j-new-99-dedicated-servers-solution-header {
  text-align: center;
}
.j-new-99-dedicated-servers-solution-header h2 {
  font-size: 35px;
  margin-bottom: 24px;
  font-weight: 700;
}
.j-new-99-dedicated-servers-solution-header p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto 20px auto;
}
.j-new-99-dedicated-servers-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.j-new-99-dedicated-servers-solution-card {
  background-color: #222222;
  border: 1px solid #3b1e1e;
  border-radius: 16px;
  padding: 40px 30px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.j-new-99-dedicated-servers-solution-card:hover {
  transform: translateY(-8px);
  border-color: #3b1e1e;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.j-new-99-dedicated-servers-solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #dc2626;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.j-new-99-dedicated-servers-solution-card:hover::before {
  transform: scaleX(1);
}
.j-new-99-dedicated-servers-solution-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.j-new-99-dedicated-servers-solution-badge::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}
.j-new-99-dedicated-servers-solution-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(246, 59, 59, 0.1);
  color: #dc2626;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.j-new-99-dedicated-servers-solution-icon i {
  font-size: 24px;
}
.j-new-99-dedicated-servers-solution-card:hover
  .j-new-99-dedicated-servers-solution-icon {
  background-color: #dc2626;
  color: #ffffff;
}
.j-new-99-dedicated-servers-solution-card h3 {
  font-size: 25px;
  font-weight: 700;
  color: white;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.4;
  padding-right: 80px;
}
.j-new-99-dedicated-servers-solution-card p {
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
  flex-grow: 1;
}
.j-new-99-dedicated-servers-solution-action {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #38bdf8;
  gap: 8px;
  transition: gap 0.3s ease;
}
.j-new-99-dedicated-servers-solution-action i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.j-new-99-dedicated-servers-solution-card:hover
  .j-new-99-dedicated-servers-solution-action {
  gap: 12px;
  color: #7dd3fc;
}
@media (max-width: 768px) {
  .j-new-99-dedicated-servers-solution-header h2 {
    font-size: 2.25rem;
  }
  .j-new-99-dedicated-servers-solution-section {
    padding: 60px 20px;
  }
  .j-new-99-dedicated-servers-solution-card h3 {
    padding-right: 0;
  }
}
.j-new-design-dd-page-5-card-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 25px 0;
}
.j-new-design-dd-page-5-card-section-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.j-new-design-dd-page-5-card-section-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background-color 0.3s;
}
.j-new-design-dd-page-5-card-section-item:hover
  .j-new-design-dd-page-5-card-section-icon {
  background-color: #fee2e2;
}
.j-new-design-dd-page-5-card-section-icon i {
  font-size: 24px;
  color: #dc2626;
}
.j-new-design-dd-page-5-card-section-title {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}
.j-new-design-dd-page-5-card-section-desc {
  font-size: 16px;
  margin-bottom: 24px;
}
.j-new-design-dd-page-5-card-section-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.j-new-design-dd-page-5-card-section-tag {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  background: #f4fff9;
  color: #089d00;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .j-new-design-dd-page-5-card-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .j-new-design-dd-page-5-card-section {
    grid-template-columns: repeat(3, 1fr);
  }
  .j-new-design-dd-page-5-card-section-item-wide {
    grid-column: span 2;
  }
  .j-new-design-dd-page-5-card-section-item-inner {
    display: flex;
    gap: 32px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .j-new-tool-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .j-new-why-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.j-new-99-homepage-solution-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 50px 20px;
}
.j-new-99-homepage-solution-header {
  text-align: center;
  margin-bottom: 60px;
}
.j-new-99-homepage-solution-title {
  font-size: 36px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 16px 0;
}
.j-new-99-homepage-solution-subtitle {
  font-size: 16px;
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.6;
}
.j-new-99-homepage-solution-accent-bar {
  width: 80px;
  height: 4px;
  background-color: #ad1919;
  margin: 24px auto 0;
  border-radius: 2px;
}
.j-new-99-homepage-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .j-new-99-homepage-solution-grid {
    grid-template-columns: 1fr;
  }
  .j-new-99-homepage-solution-title {
    font-size: 28px;
  }
}
.j-new-99-homepage-solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.j-new-99-homepage-solution-card:hover {
  border-color: #ad1919;
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04);
}
.j-new-99-homepage-solution-icon-box {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.j-new-99-homepage-solution-card-content {
  flex: 1;
}
.j-new-99-homepage-solution-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
}
.j-new-99-homepage-solution-card-desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: black;
}
.j-new-99-homepage-solution-bg-rose {
  background-color: #fff5f5;
  color: #ad1919;
  border: 1px solid #ffe4e6;
}
.j-new-99-location-country-search-wrapper {
  position: relative;
  z-index: 1001;
}
.j-search-suggestions-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-height: 260px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: 8px;
  padding: 8px 0;
}
.j-search-suggestions-box::-webkit-scrollbar {
  width: 6px;
}
.j-search-suggestions-box::-webkit-scrollbar-track {
  background: #f9f9f9;
  border-radius: 8px;
}
.j-search-suggestions-box::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 8px;
}
.j-search-suggestions-box::-webkit-scrollbar-thumb:hover {
  background: #aaaaaa;
}
.j-search-suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 15px;
  color: #4a4a4a;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  background-color: transparent;
}
.j-search-suggestion-item:hover {
  background-color: #f4f8fc;
  color: #b82a2a;
  padding-left: 25px;
  font-weight: 500;
}
.j-search-suggestion-item strong {
  color: #111;
  font-weight: 700;
}
.j-new-99-dedicated-servers-solution-container {
  max-width: 1700px;
  margin: 0 auto;
}
.j-new-99-dedicated-servers-solution-header {
  text-align: center;
}
.j-new-99-dedicated-servers-solution-header h2 {
  font-size: 35px;
  margin-bottom: 24px;
  font-weight: 700;
}
.j-new-99-dedicated-servers-solution-header p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto 20px auto;
}
.j-new-99-dedicated-servers-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .j-new-99-dedicated-servers-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 724px) {
  .j-new-99-dedicated-servers-solution-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.j-new-99-dedicated-servers-solution-card {
  background-color: #222222;
  border: 1px solid #3b1e1e;
  border-radius: 16px;
  padding: 40px 30px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.j-new-99-dedicated-servers-solution-card:hover {
  transform: translateY(-8px);
  border-color: #3b1e1e;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.j-new-99-dedicated-servers-solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #dc2626;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.j-new-99-dedicated-servers-solution-card:hover::before {
  transform: scaleX(1);
}
.j-new-99-dedicated-servers-solution-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.j-new-99-dedicated-servers-solution-badge::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}
.j-new-99-dedicated-servers-solution-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(246, 59, 59, 0.1);
  color: #dc2626;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.j-new-99-dedicated-servers-solution-icon i {
  font-size: 24px;
}
.j-new-99-dedicated-servers-solution-card:hover
  .j-new-99-dedicated-servers-solution-icon {
  background-color: #dc2626;
  color: #ffffff;
}
.j-new-99-dedicated-servers-solution-card h3 {
  font-size: 25px;
  font-weight: 700;
  color: white;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.4;
  padding-right: 80px;
}
.j-new-99-dedicated-servers-solution-card p {
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
  flex-grow: 1;
}
.j-new-99-dedicated-servers-solution-action {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #38bdf8;
  gap: 8px;
  transition: gap 0.3s ease;
}
.j-new-99-dedicated-servers-solution-action i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.j-new-99-dedicated-servers-solution-card:hover
  .j-new-99-dedicated-servers-solution-action {
  gap: 12px;
  color: #7dd3fc;
}
@media (max-width: 768px) {
  .j-new-99-dedicated-servers-solution-header h2 {
    font-size: 2.25rem;
  }
  .j-new-99-dedicated-servers-solution-section {
    padding: 60px 20px;
  }
  .j-new-99-dedicated-servers-solution-card h3 {
    padding-right: 0;
  }
}
.j-new-dedicated-server-intro-container {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.j-new-dedicated-server-intro-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.j-new-dedicated-server-intro-image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.j-new-dedicated-server-intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.j-new-dedicated-server-title-container {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto 20px auto;
}
.j-new-dedicated-server-title-container h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.j-new-dedicated-server-title-container h2 span {
  color: #dc2626;
}
.j-new-dedicated-server-title-container p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.j-new-dedicated-server-intro-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.j-new-dedicated-server-intro-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.j-new-dedicated-server-intro-icon {
  background-color: #eff6ff;
  color: #dc2626;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.j-new-dedicated-server-intro-list-text {
  font-size: 1.05rem;
  line-height: 1.5;
  padding-top: 2px;
}
.j-new-dedicated-server-intro-list-text strong {
  color: #0f172a;
  font-weight: 700;
}
@media (max-width: 992px) {
  .j-new-dedicated-server-intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }
  .j-new-dedicated-server-title-container h2 {
    font-size: 2.25rem;
  }
  .j-new-dedicated-server-intro-image-wrapper img {
    min-height: auto;
  }
}
@media (max-width: 600px) {
  .j-new-dedicated-server-title-container h2 {
    font-size: 1.875rem;
  }
  .j-new-dedicated-server-intro-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .j-new-dedicated-server-intro-list-text {
    font-size: 0.95rem;
  }
}
.section {
  padding: 50px 20px;
}
.dark-section {
  background-color: #f8fafc;
}
.j-servers99-country-latancy-section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #f8fafc;
  display: flex;
  justify-content: center;
}
.j-servers99-country-latancy-container {
  width: 100%;
  max-width: 1700px;
}
.j-servers99-country-latancy-header {
  text-align: center;
  margin-bottom: 60px;
}
.j-servers99-country-latancy-title {
  font-size: 42px;
  font-weight: 800;
  color: #153154;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.j-servers99-country-latancy-desc {
  font-size: 18px;
  color: #475569;
  line-height: 32px;
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.j-servers99-country-latancy-network-wrapper {
  position: relative;
  margin-top: 50px;
  text-align: center;
}
.j-servers99-country-latancy-hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #0e172a;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(21, 49, 84, 0.2);
  position: relative;
  z-index: 2;
}
.j-servers99-country-latancy-hub-icon {
  color: #ac1919;
  font-size: 24px;
}
.j-servers99-country-latancy-hub-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.j-servers99-country-latancy-hub-subtext {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #334155;
}
.j-servers99-country-latancy-connector {
  position: relative;
  height: 40px;
  width: 100%;
}
.j-servers99-country-latancy-connector-line-v {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #cbd5e1;
  transform: translateX(-50%);
}
.j-servers99-country-latancy-connector-line-h {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #cbd5e1;
}
.j-servers99-country-latancy-connector-line-v-left,
.j-servers99-country-latancy-connector-line-v-right {
  position: absolute;
  bottom: -20px;
  width: 2px;
  height: 20px;
  background-color: #cbd5e1;
}
.j-servers99-country-latancy-connector-line-v-left {
  left: 25%;
}
.j-servers99-country-latancy-connector-line-v-right {
  right: 25%;
}
.j-servers99-country-latancy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.j-servers99-country-latancy-column {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}
.j-servers99-country-latancy-col-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.j-servers99-country-latancy-col-icon {
  font-size: 24px;
  color: #ac1919;
}
.j-servers99-country-latancy-col-title {
  font-size: 22px;
  font-weight: 800;
  color: #0e172a;
  margin: 0;
}
.j-servers99-country-latancy-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.j-servers99-country-latancy-card {
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  background-color: #f8fafc66;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}
.j-servers99-country-latancy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  border-color: #cbd5e1;
}
.j-servers99-country-latancy-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.j-servers99-country-latancy-city {
  font-size: 18px;
  font-weight: 700;
  color: #153154;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.j-servers99-country-latancy-city-dot {
  width: 8px;
  height: 8px;
  background-color: #153154;
  border-radius: 50%;
  display: inline-block;
}
.j-servers99-country-latancy-ping {
  font-size: 24px;
  font-weight: 800;
  color: #10b981;
  margin: 0;
}
.j-servers99-country-latancy-card-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  margin-bottom: 16px;
}
.j-servers99-country-latancy-bar-bg {
  width: 100%;
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}
.j-servers99-country-latancy-bar-fill {
  height: 100%;
  background-color: #10b981;
  border-radius: 6px;
  position: relative;
}
.j-servers99-country-latancy-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.j-servers99-country-latancy-footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #94a3b8;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .j-servers99-country-latancy-connector-line-h {
    width: 60%;
    left: 20%;
  }
  .j-servers99-country-latancy-connector-line-v-left {
    left: 20%;
  }
  .j-servers99-country-latancy-connector-line-v-right {
    right: 20%;
  }
}
@media (max-width: 768px) {
  .j-servers99-country-latancy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .j-servers99-country-latancy-connector {
    display: none;
  }
  .j-servers99-country-latancy-network-wrapper {
    margin-bottom: 40px;
  }
  .j-servers99-country-latancy-title {
    font-size: 32px;
  }
  .j-servers99-country-latancy-desc {
    font-size: 16px;
    line-height: 28px;
  }
  .j-servers99-country-latancy-column {
    padding: 24px;
  }
  .j-servers99-country-latancy-card-top {
    flex-direction: column;
    gap: 8px;
  }
}
.j-new-software-cat-section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: center;
}
.j-new-software-cat-container {
  width: 100%;
  max-width: 1700px;
}
.j-new-software-cat-header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.j-new-software-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
.j-new-software-cat-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 35px 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.j-new-software-cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ad1919, #f89696);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.j-new-software-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}
.j-new-software-cat-card:hover::before {
  opacity: 1;
}
.j-new-software-cat-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: #fef2f2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.j-new-software-cat-card:hover .j-new-software-cat-icon-wrapper {
  background-color: #f5dcdc;
  transform: scale(1.05);
}
.j-new-software-cat-icon {
  font-size: 30px;
  color: #ad1919;
  transition: all 0.4s ease;
}
.j-new-software-cat-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
.j-new-software-cat-card-desc {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}
.j-new-software-cat-alert-banner {
  background-color: #1f2937;
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}
.j-new-software-cat-alert-banner::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.1) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.j-new-software-cat-alert-icon-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.j-new-software-cat-alert-icon {
  font-size: 28px;
  color: #fbbf24;
}
.j-new-software-cat-alert-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.j-new-software-cat-alert-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
.j-new-software-cat-alert-text {
  font-size: 16px;
  color: #bec1c6;
  line-height: 28px;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 992px) {
  .j-new-software-cat-grid {
    gap: 24px;
  }
  .j-new-software-cat-card {
    padding: 40px 32px;
  }
  .j-new-software-cat-alert-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .j-new-software-cat-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .j-new-software-cat-grid {
    grid-template-columns: 1fr;
  }
}
.j-new-software-cat-tools-section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #f1f5f9;
  display: flex;
  justify-content: center;
}
.j-new-software-cat-tools-container {
  width: 100%;
  max-width: 1700px;
}
.j-new-software-cat-tools-main-header {
  margin-bottom: 70px;
  text-align: left;
}
.j-new-software-cat-tools-main-title {
  font-size: 31px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.2;
}
.j-new-software-cat-tools-main-desc {
  font-size: 18px;
  max-width: 1000px;
  margin: 0;
}
.j-new-software-cat-tools-category {
  margin-bottom: 80px;
}
.j-new-software-cat-tools-category:last-of-type {
  margin-bottom: 0;
}
.j-new-software-cat-tools-cat-header-wrap {
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid #ad1919;
}
.j-new-software-cat-tools-cat-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}
.j-new-software-cat-tools-cat-desc {
  font-size: 16px;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 900px;
}
.j-new-software-cat-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.j-new-software-cat-tools-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  position: relative;
  overflow: hidden;
}
.j-new-software-cat-tools-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}
.j-new-software-cat-tools-logo-wrap {
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.j-new-software-cat-tools-logo-img {
  max-height: 100%;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(10%) contrast(1.1);
  transition: all 0.3s ease;
}
.j-new-software-cat-tools-card:hover .j-new-software-cat-tools-logo-img {
  filter: grayscale(0%) contrast(1);
}
.j-new-software-cat-tools-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 12px;
}
.j-new-software-cat-tools-card-desc {
  font-size: 16px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 32px;
  flex-grow: 1;
}
.j-new-software-cat-tools-link {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  margin-top: auto;
}
.j-new-software-cat-tools-link-arrow {
  margin-left: 6px;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.j-new-software-cat-tools-card:hover .j-new-software-cat-tools-link {
  color: #ad1919;
}
.j-new-software-cat-tools-card:hover .j-new-software-cat-tools-link-arrow {
  transform: translateX(5px);
}
.j-new-software-cat-tools-techbox {
  margin-top: 80px;
  background: #1f2937;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
  position: relative;
  border: 1px solid #334155;
}
.j-new-software-cat-tools-techbox-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.j-new-software-cat-tools-techbox-icon {
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
}
.j-new-software-cat-tools-techbox-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
.j-new-software-cat-tools-techbox-intro {
  font-size: 16px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 32px;
  line-height: 28px;
}
.j-new-software-cat-tools-techbox-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.j-new-software-cat-tools-techbox-item {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}
.j-new-software-cat-tools-techbox-item:nth-child(2) {
  border-left-color: #10b981;
}
.j-new-software-cat-tools-techbox-item:nth-child(3) {
  border-left-color: #f59e0b;
}
.j-new-software-cat-tools-techbox-item:nth-child(4) {
  border-left-color: #ef4444;
}
.j-new-software-cat-tools-techbox-item-content {
  font-size: 16px;
  line-height: 28px;
  color: #cbd5e1;
  margin: 0;
}
.j-new-software-cat-tools-techbox-highlight {
  color: #ffffff;
  font-weight: 700;
  margin-right: 6px;
}
@media (max-width: 992px) {
  .j-new-software-cat-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .j-new-software-cat-tools-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .j-new-software-cat-tools-main-title {
    font-size: 32px;
  }
  .j-new-software-cat-tools-grid {
    grid-template-columns: 1fr;
  }
  .j-new-software-cat-tools-techbox {
    padding: 32px 24px;
  }
}
.j-new-software-cat-table-section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #f8fafc;
  display: flex;
  justify-content: center;
}
.j-new-software-cat-table-container {
  width: 100%;
  max-width: 1700px;
}
.j-new-software-cat-table-header {
  text-align: center;
  margin-bottom: 60px;
}
.j-new-software-cat-table-title {
  font-size: 31px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 16px;
}
.j-new-software-cat-table-desc {
  font-size: 18px;
  max-width: 1000px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.j-new-software-cat-table-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.j-new-software-cat-table-list-head {
  display: flex;
  padding: 0 32px 16px 32px;
  border-bottom: 2px solid #cbd5e1;
}
.j-new-software-cat-table-col-1 {
  width: 25%;
  font-weight: 700;
  color: #64748b;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.j-new-software-cat-table-col-2 {
  width: 20%;
  font-weight: 700;
  color: #64748b;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.j-new-software-cat-table-col-3 {
  width: 55%;
  font-weight: 700;
  color: #64748b;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.j-new-software-cat-table-row {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.j-new-software-cat-table-row:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
  background-color: #fdfef2;
}
.j-new-software-cat-table-row .j-new-software-cat-table-col-1 {
  color: #0f172a;
  font-size: 18px;
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  gap: 16px;
}
.j-new-software-cat-table-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
  border-radius: 10px;
  flex-shrink: 0;
}
.j-new-software-cat-table-icon svg {
  width: 18px;
  height: 18px;
  stroke: #153154;
  stroke-width: 2;
  fill: none;
}
.j-new-software-cat-table-row .j-new-software-cat-table-col-2 {
  text-transform: none;
  letter-spacing: normal;
}
.j-new-software-cat-table-row .j-new-software-cat-table-col-3 {
  color: #475569;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  line-height: 26px;
}
.j-new-software-cat-table-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.j-new-software-cat-table-badge-fw {
  background-color: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.j-new-software-cat-table-badge-ids {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.j-new-software-cat-table-badge-waf {
  background-color: #fdf4ff;
  color: #a21caf;
  border: 1px solid #f5d0fe;
}
.j-new-software-cat-table-badge-ac {
  background-color: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
@media (max-width: 768px) {
  .j-new-software-cat-table-section {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .j-new-software-cat-table-title {
    font-size: 28px;
  }
  .j-new-software-cat-table-desc {
    font-size: 16px;
    line-height: 28px;
  }
  .j-new-software-cat-table-list-head {
    display: none;
  }
  .j-new-software-cat-table-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
  .j-new-software-cat-table-row:hover {
    transform: translateY(-4px);
  }
  .j-new-software-cat-table-col-1,
  .j-new-software-cat-table-col-2,
  .j-new-software-cat-table-col-3 {
    width: 100%;
  }
}
.j-new-software-cat-why-section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #1f2937;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.j-new-software-cat-why-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(232, 49, 43, 0.05) 0%,
    rgba(2, 6, 23, 0) 70%
  );
  z-index: 1;
  pointer-events: none;
}
.j-new-software-cat-why-container {
  width: 100%;
  max-width: 1700px;
  position: relative;
  z-index: 2;
}
.j-new-software-cat-why-header {
  text-align: center;
  margin-bottom: 72px;
}
.j-new-software-cat-why-title {
  font-size: 35px;
  font-weight: 600;
  color: #f8fafc;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.2;
}
.j-new-software-cat-why-desc {
  font-size: 16px;
  color: white;
  line-height: 32px;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.j-new-software-cat-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.j-new-software-cat-why-card {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.j-new-software-cat-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 49, 43, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.j-new-software-cat-why-card:hover {
  transform: translateY(-8px);
  border-color: #334155;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(232, 49, 43, 0.05);
  background: linear-gradient(180deg, #152238 0%, #020617 100%);
}
.j-new-software-cat-why-card:hover::before {
  opacity: 1;
}
.j-new-software-cat-why-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: rgba(232, 49, 43, 0.05);
  border: 1px solid rgba(232, 49, 43, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}
.j-new-software-cat-why-card:hover .j-new-software-cat-why-icon-wrap {
  background-color: rgba(232, 49, 43, 0.1);
  border-color: rgba(232, 49, 43, 0.3);
  transform: scale(1.05);
}
.j-new-software-cat-why-icon {
  width: 30px;
  height: 30px;
  stroke: #ad1919;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.j-new-software-cat-why-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #f8fafc;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.j-new-software-cat-why-card-desc {
  font-size: 16px;
  color: #f1f1f1;
  line-height: 28px;
  margin: 0;
}
.j-new-software-cat-why-banner {
  background: linear-gradient(135deg, #0f172a 0%, #153154 100%);
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.j-new-software-cat-why-banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  background: radial-gradient(
    circle at right,
    rgba(232, 49, 43, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.j-new-software-cat-why-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.j-new-software-cat-why-banner-icon-wrap {
  width: 72px;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.j-new-software-cat-why-banner-icon {
  width: 36px;
  height: 36px;
  stroke: #f8fafc;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.j-new-software-cat-why-banner-text-wrap {
  flex-grow: 1;
}
.j-new-software-cat-why-banner-title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 12px;
}
.j-new-software-cat-why-banner-desc {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 1024px) {
  .j-new-software-cat-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .j-new-software-cat-why-banner {
    padding: 40px 32px;
  }
}
@media (max-width: 768px) {
  .j-new-software-cat-why-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .j-new-software-cat-why-title {
    font-size: 32px;
  }
  .j-new-software-cat-why-desc {
    font-size: 16px;
    line-height: 28px;
  }
  .j-new-software-cat-why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .j-new-software-cat-why-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .j-new-software-cat-why-banner-title {
    font-size: 24px;
  }
  .j-new-software-cat-why-card {
    padding: 32px 24px;
  }
}
.j-new-software-cat-recom-section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #f1f5f9;
  display: flex;
  justify-content: center;
}
.j-new-software-cat-recom-container {
  width: 100%;
  max-width: 1700px;
}
.j-new-software-cat-recom-header {
  text-align: center;
  margin-bottom: 64px;
}
.j-new-software-cat-recom-title {
  font-size: 31px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}
.j-new-software-cat-recom-desc {
  font-size: 18px;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.j-new-software-cat-recom-timeline {
  position: relative;
  padding-left: 64px;
}
.j-new-software-cat-recom-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  width: 2px;
  background-color: #cbd5e1;
}
.j-new-software-cat-recom-step {
  position: relative;
  margin-bottom: 48px;
}
.j-new-software-cat-recom-step:last-child {
  margin-bottom: 0;
}
.j-new-software-cat-recom-marker {
  position: absolute;
  left: -64px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background-color: #1f2937;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(21, 49, 84, 0.2);
  border: 4px solid #f1f5f9;
}
.j-new-software-cat-recom-content {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.j-new-software-cat-recom-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}
.j-new-software-cat-recom-layer-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 20px;
}
.j-new-software-cat-recom-text-block {
  margin-bottom: 20px;
  font-size: 16px;
  color: #363a40;
  line-height: 28px;
}
.j-new-software-cat-recom-text-block:last-child {
  margin-bottom: 0;
}
.j-new-software-cat-recom-highlight {
  font-weight: 700;
  color: #ac1919;
  display: block;
  margin-bottom: 4px;
}
.j-new-software-cat-recom-expert-box {
  margin-top: 80px;
  background-color: rgb(240 226 226 / 60%);
  border: 2px dashed #b89494;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.j-new-software-cat-recom-expert-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  background-color: #ffffff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}
.j-new-software-cat-recom-expert-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 12px;
}
.j-new-software-cat-recom-expert-text {
  font-size: 16px;
  color: #232323;
  line-height: 26px;
  margin: 0;
}
@media (max-width: 768px) {
  .j-new-software-cat-recom-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .j-new-software-cat-recom-title {
    font-size: 30px;
  }
  .j-new-software-cat-recom-desc {
    font-size: 16px;
    line-height: 28px;
  }
  .j-new-software-cat-recom-timeline {
    padding-left: 0;
  }
  .j-new-software-cat-recom-timeline::before {
    display: none;
  }
  .j-new-software-cat-recom-marker {
    position: relative;
    left: 0;
    margin-bottom: 16px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border: none;
  }
  .j-new-software-cat-recom-content {
    padding: 24px;
  }
  .j-new-software-cat-recom-expert-box {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}
.j-new-software-cat-check-section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: center;
}
.j-new-software-cat-check-container {
  width: 100%;
  max-width: 1700px;
}
.j-new-software-cat-check-header {
  text-align: center;
  margin-bottom: 60px;
}
.j-new-software-cat-check-title {
  font-size: 31px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 20px;
}
.j-new-software-cat-check-desc {
  font-size: 18px;
  line-height: 32px;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.j-new-software-cat-check-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.j-new-software-cat-check-phase-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.j-new-software-cat-check-phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}
.j-new-software-cat-check-phase-header {
  display: inline-block;
  background-color: #1f2937;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.j-new-software-cat-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.j-new-software-cat-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 5px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.j-new-software-cat-check-item:hover {
  background-color: #f8fafc;
  border-color: #e2e8f0;
  transform: translateX(4px);
}
.j-new-software-cat-check-icon-wrap {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}
.j-new-software-cat-check-icon {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 3px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.j-new-software-cat-check-content {
  font-size: 16px;
  color: black;
  line-height: 28px;
  margin: 0;
}
.j-new-software-cat-check-highlight {
  font-weight: 700;
  color: #0f172a;
  font-size: 17px;
}
@media (max-width: 768px) {
  .j-new-software-cat-check-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .j-new-software-cat-check-title {
    font-size: 32px;
  }
  .j-new-software-cat-check-desc {
    font-size: 16px;
    line-height: 28px;
  }
  .j-new-software-cat-check-phase-card {
    padding: 24px;
  }
  .j-new-software-cat-check-item {
    padding: 16px 12px;
  }
}
.j-new-99-country-des {
  font-weight: 500;
}
.j-new-99-software-security-tools-benefits-wrapper {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.j-new-99-software-security-tools-benefits-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.j-new-99-software-security-tools-benefits-header {
  text-align: left;
  margin-bottom: 40px;
}
.j-new-99-software-security-tools-benefits-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.j-new-99-software-security-tools-benefits-title span {
  color: #ad1919;
}
.j-new-99-software-security-tools-benefits-intro {
  font-size: 16px;
  margin: 0;
}
.j-new-99-software-security-tools-benefits-main-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
}
.j-new-99-software-security-tools-benefits-sticky-col {
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
}
.j-new-99-software-security-tools-benefits-visual-board {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(14, 39, 70, 0.15);
  box-shadow: 0 15px 35px rgba(14, 39, 70, 0.08);
  position: relative;
}
.j-new-99-software-security-tools-benefits-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
}
.j-new-99-software-security-tools-benefits-panel-dots {
  display: flex;
  gap: 6px;
}
.j-new-99-software-security-tools-benefits-panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.j-new-99-software-security-tools-benefits-panel-dot-red {
  background: #ef4444;
}
.j-new-99-software-security-tools-benefits-panel-dot-yellow {
  background: #f59e0b;
}
.j-new-99-software-security-tools-benefits-panel-dot-green {
  background: #10b981;
}
.j-new-99-software-security-tools-benefits-panel-status {
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.j-new-99-software-security-tools-benefits-panel-pulse {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: j-new-99-software-security-tools-benefits-pulse-anim 1.5s infinite
    alternate;
}
@keyframes j-new-99-software-security-tools-benefits-pulse-anim {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.j-new-99-software-security-tools-benefits-monitor-screen {
  background-color: #09111e;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}
.j-new-99-software-security-tools-benefits-radar-display {
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.j-new-99-software-security-tools-benefits-radar-sweep {
  position: absolute;
  width: 180px;
  height: 180px;
  background: conic-gradient(
    from 0deg,
    rgba(232, 49, 43, 0.15) 0deg,
    rgba(232, 49, 43, 0) 180deg
  );
  border-radius: 50%;
  animation: j-new-99-software-security-tools-benefits-spin 4s linear infinite;
}
@keyframes j-new-99-software-security-tools-benefits-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.j-new-99-software-security-tools-benefits-radar-grid-one {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(232, 49, 43, 0.2);
  border-radius: 50%;
}
.j-new-99-software-security-tools-benefits-radar-grid-two {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(232, 49, 43, 0.15);
  border-radius: 50%;
}
.j-new-99-software-security-tools-benefits-radar-cross-h {
  position: absolute;
  width: 110px;
  height: 1px;
  background: rgba(232, 49, 43, 0.1);
}
.j-new-99-software-security-tools-benefits-radar-cross-v {
  position: absolute;
  height: 110px;
  width: 1px;
  background: rgba(232, 49, 43, 0.1);
}
.j-new-99-software-security-tools-benefits-radar-shield {
  position: relative;
  z-index: 5;
  font-size: 32px;
  color: #ffffff;
  animation: j-new-99-software-security-tools-benefits-bounce 3s ease-in-out
    infinite alternate;
}
@keyframes j-new-99-software-security-tools-benefits-bounce {
  0% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 8px rgba(232, 49, 43, 0.3);
  }
  100% {
    transform: translateY(-4px) scale(1.05);
    text-shadow: 0 0 16px rgba(232, 49, 43, 0.6);
  }
}
.j-new-99-software-security-tools-benefits-stats-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.j-new-99-software-security-tools-benefits-stat-bar-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.j-new-99-software-security-tools-benefits-stat-info {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #94a3b8;
  font-family: monospace;
}
.j-new-99-software-security-tools-benefits-stat-value {
  color: #22c55e;
  font-weight: 700;
}
.j-new-99-software-security-tools-benefits-stat-track {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.j-new-99-software-security-tools-benefits-stat-fill {
  height: 100%;
  border-radius: 10px;
  background-color: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 145, 0.5);
}
.j-new-99-software-security-tools-benefits-stat-fill-one {
  width: 94%;
}
.j-new-99-software-security-tools-benefits-stat-fill-two {
  width: 88%;
}
.j-new-99-software-security-tools-benefits-console-log-area {
  background-color: #09111e;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px;
  height: 100px;
  overflow: hidden;
  font-family: monospace;
  font-size: 11px;
  color: #38bdf8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.j-new-99-software-security-tools-benefits-log-item {
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.j-new-99-software-security-tools-benefits-log-danger {
  color: #f87171;
}
.j-new-99-software-security-tools-benefits-log-success {
  color: #4ade80;
}
.j-new-99-software-security-tools-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.j-new-99-software-security-tools-benefits-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(14, 39, 70, 0.06);
  box-shadow: 7px 5px 16px -1px rgba(0, 0, 0, 0.52);
  -webkit-box-shadow: 7px 5px 16px -1px rgba(0, 0, 0, 0.52);
  transition: all 0.3s ease;
}
.j-new-99-software-security-tools-benefits-item:hover {
  border-color: rgba(232, 49, 43, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(14, 39, 70, 0.04);
}
.j-new-99-software-security-tools-benefits-item-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(232, 49, 43, 0.08);
  border: 1px solid rgba(232, 49, 43, 0.15);
  color: #ad1919;
  transition: all 0.3s ease;
}
.j-new-99-software-security-tools-benefits-item-icon-box-green {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.j-new-99-software-security-tools-benefits-item-icon-box-blue {
  background: rgba(14, 39, 70, 0.04);
  border: 1px solid rgba(14, 39, 70, 0.08);
  color: #0e2746;
}
.j-new-99-software-security-tools-benefits-item-icon-box-orange {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}
.j-new-99-software-security-tools-benefits-item:hover
  .j-new-99-software-security-tools-benefits-item-icon-box {
  background: #ad1919;
  border-color: #ad1919;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(232, 49, 43, 0.3);
}
.j-new-99-software-security-tools-benefits-item:hover
  .j-new-99-software-security-tools-benefits-item-icon-box-green {
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(34, 197, 94, 0.3);
}
.j-new-99-software-security-tools-benefits-item:hover
  .j-new-99-software-security-tools-benefits-item-icon-box-blue {
  background: #0e2746;
  border-color: #0e2746;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(14, 39, 70, 0.3);
}
.j-new-99-software-security-tools-benefits-item:hover
  .j-new-99-software-security-tools-benefits-item-icon-box-orange {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(245, 158, 11, 0.3);
}
.j-new-99-software-security-tools-benefits-item-icon {
  font-size: 24px;
}
.j-new-99-software-security-tools-benefits-item-content {
  flex: 1;
}
.j-new-99-software-security-tools-benefits-item-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 24px;
}
.j-new-99-software-security-tools-benefits-item-desc {
  font-size: 16px;
  margin: 0;
}
.j-new-99-software-security-tools-benefits-section-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(14, 39, 70, 0.08);
  padding-top: 35px;
}
.j-new-99-software-security-tools-benefits-sub-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.j-new-99-software-security-tools-benefits-sub-intro {
  margin: 0 0 24px 0;
  max-width: 950px;
}
.j-new-99-software-security-tools-benefits-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.j-new-99-software-security-tools-benefits-sub-card {
  background: #ffffff;
  border: 1px solid rgba(14, 39, 70, 0.06);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(14, 39, 70, 0.01);
  position: relative;
}
.j-new-99-software-security-tools-benefits-sub-card:hover {
  border-color: #ad1919;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(14, 39, 70, 0.05);
}
.j-new-99-software-security-tools-benefits-sub-card-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(14, 39, 70, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e2746;
  margin-bottom: 14px;
  font-size: 20px;
  transition: all 0.3s ease;
}
.j-new-99-software-security-tools-benefits-sub-card:hover
  .j-new-99-software-security-tools-benefits-sub-card-icon-box {
  background: #ad1919;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(232, 49, 43, 0.2);
}
.j-new-99-software-security-tools-benefits-sub-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.j-new-99-software-security-tools-benefits-sub-card-text {
  font-size: 15px;
  margin: 0;
}
@media (max-width: 1024px) {
  .j-new-99-software-security-tools-benefits-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .j-new-99-software-security-tools-benefits-sticky-col {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .j-new-99-software-security-tools-benefits-sub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .j-new-99-software-security-tools-benefits-title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .j-new-99-software-security-tools-benefits-wrapper {
    padding: 40px 15px;
  }
  .j-new-99-software-security-tools-benefits-title {
    font-size: 26px;
    line-height: 34px;
  }
  .j-new-99-software-security-tools-benefits-item {
    gap: 14px;
    padding: 16px;
  }
}
.j-new-99-software-security-tools-table-wrapper {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.j-new-99-software-security-tools-table-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.j-new-99-software-security-tools-table-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}
.j-new-99-software-security-tools-table-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.j-new-99-software-security-tools-table-title span {
  color: #ad1919;
}
.j-new-99-software-security-tools-table-card {
  background: #1f2937;
  border-radius: 20px;
  border: 1px solid rgba(14, 39, 70, 0.15);
  box-shadow: 0 15px 35px rgba(14, 39, 70, 0.08);
  padding: 24px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.j-new-99-software-security-tools-table-el {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}
.j-new-99-software-security-tools-table-th {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  padding: 16px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
.j-new-99-software-security-tools-table-th-active {
  color: #ffffff;
  background: rgba(232, 49, 43, 0.1);
  border-top: 1px solid rgba(232, 49, 43, 0.3);
  border-left: 1px solid rgba(232, 49, 43, 0.3);
  border-right: 1px solid rgba(232, 49, 43, 0.3);
  border-bottom: 2px solid #ad1919;
  border-radius: 12px 12px 0 0;
  text-align: center;
}
.j-new-99-software-security-tools-table-th-active-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.j-new-99-software-security-tools-table-th-active-tag {
  font-size: 9px;
  background-color: #ad1919;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.j-new-99-software-security-tools-table-th-passive {
  text-align: center;
}
.j-new-99-software-security-tools-table-tr:hover
  .j-new-99-software-security-tools-table-td-feature {
  color: #ffffff;
}
.j-new-99-software-security-tools-table-td {
  font-size: 16px;
  line-height: 22px;
  color: #94a3b8;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.j-new-99-software-security-tools-table-td-feature {
  font-weight: 500;
  color: white;
  width: 40%;
}
.j-new-99-software-security-tools-table-td-active {
  background: rgba(232, 49, 43, 0.03);
  border-left: 1px solid rgba(232, 49, 43, 0.15);
  border-right: 1px solid rgba(232, 49, 43, 0.15);
  text-align: center;
  width: 30%;
}
.j-new-99-software-security-tools-table-tr:hover
  .j-new-99-software-security-tools-table-td-active {
  background: rgba(232, 49, 43, 0.06);
  border-left-color: rgba(232, 49, 43, 0.35);
  border-right-color: rgba(232, 49, 43, 0.35);
}
.j-new-99-software-security-tools-table-td-passive {
  text-align: center;
  width: 30%;
}
.j-new-99-software-security-tools-table-tr:last-child
  .j-new-99-software-security-tools-table-td-active {
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid rgba(232, 49, 43, 0.15);
}
.j-new-99-software-security-tools-table-tr:last-child:hover
  .j-new-99-software-security-tools-table-td-active {
  border-bottom-color: rgba(232, 49, 43, 0.35);
}
.j-new-99-software-security-tools-table-status-yes {
  color: #22c55e;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.j-new-99-software-security-tools-table-status-no {
  color: #ef4444;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.j-new-99-software-security-tools-table-status-warning {
  color: #f59e0b;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.j-new-99-software-security-tools-table-verdict-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(14, 39, 70, 0.06);
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 20px;
  align-items: center;
}
.j-new-99-software-security-tools-table-verdict-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ad1919;
}
.j-new-99-software-security-tools-table-verdict-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(232, 49, 43, 0.06);
  border: 1px solid rgba(232, 49, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ad1919;
  font-size: 24px;
  flex-shrink: 0;
}
.j-new-99-software-security-tools-table-verdict-content {
  flex: 1;
}
.j-new-99-software-security-tools-table-verdict-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px 0;
}
.j-new-99-software-security-tools-table-verdict-desc {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 768px) {
  .j-new-99-software-security-tools-table-wrapper {
    padding: 50px 15px;
  }
  .j-new-99-software-security-tools-table-title {
    font-size: 28px;
    line-height: 36px;
  }
  .j-new-99-software-security-tools-table-card {
    padding: 16px;
  }
  .j-new-99-software-security-tools-table-el,
  .j-new-99-software-security-tools-table-thead,
  .j-new-99-software-security-tools-table-tbody,
  .j-new-99-software-security-tools-table-th,
  .j-new-99-software-security-tools-table-td,
  .j-new-99-software-security-tools-table-tr {
    display: block;
  }
  .j-new-99-software-security-tools-table-thead {
    display: none;
  }
  .j-new-99-software-security-tools-table-tr {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .j-new-99-software-security-tools-table-tr:last-child {
    border-bottom: 0;
  }
  .j-new-99-software-security-tools-table-td {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border: 0 !important;
    background: transparent !important;
    width: 100% !important;
  }
  .j-new-99-software-security-tools-table-td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  .j-new-99-software-security-tools-table-td-feature {
    font-size: 15px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
  .j-new-99-software-security-tools-table-td-feature::before {
    content: "Comparison Metric" !important;
  }
  .j-new-99-software-security-tools-table-verdict-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }
}
.j-new-99-software-security-tools-system-wrapper {
  background: #e2e2e2;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.j-new-99-software-security-tools-system-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.j-new-99-software-security-tools-system-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
.j-new-99-software-security-tools-system-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.j-new-99-software-security-tools-system-title span {
  color: #ad1919;
}
.j-new-99-software-security-tools-system-intro {
  font-size: 16px;
  margin: 0 0 16px 0;
}
.j-new-99-software-security-tools-system-sub-intro {
  font-size: 15px;
  line-height: 26px;
  color: #475569;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(14, 39, 70, 0.06);
  padding: 16px 24px;
  border-radius: 12px;
  display: inline-block;
}
.j-new-99-software-security-tools-system-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.j-new-99-software-security-tools-system-panel {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.9) 0%,
    rgba(15, 23, 42, 0.95) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px;
  box-shadow: 0 25px 50px rgba(14, 39, 70, 0.15);
  position: relative;
  overflow: hidden;
}
.j-new-99-software-security-tools-system-panel-os {
  grid-column: span 7;
}
.j-new-99-software-security-tools-system-panel-app {
  grid-column: span 5;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.j-new-99-software-security-tools-system-panel-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.j-new-99-software-security-tools-system-panel-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.j-new-99-software-security-tools-system-panel-desc {
  font-size: 16px;
  color: white;
  margin: 0;
}
.j-new-99-software-security-tools-system-os-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.j-new-99-software-security-tools-system-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}
.j-new-99-software-security-tools-system-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 49, 43, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.j-new-99-software-security-tools-system-logo {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.j-new-99-software-security-tools-system-card:hover
  .j-new-99-software-security-tools-system-logo {
  transform: scale(1.1);
}
.j-new-99-software-security-tools-system-info {
  display: flex;
  flex-direction: column;
}
.j-new-99-software-security-tools-system-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.j-new-99-software-security-tools-system-version {
  font-size: 12px;
  color: #94a3b8;
}
.j-new-99-software-security-tools-system-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border-left: 3px solid #38bdf8;
  font-size: 14px;
  line-height: 22px;
  color: #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.j-new-99-software-security-tools-system-app-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.j-new-99-software-security-tools-system-app-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}
.j-new-99-software-security-tools-system-app-card:hover {
  background: rgba(232, 49, 43, 0.1);
  border-color: rgba(232, 49, 43, 0.3);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.j-new-99-software-security-tools-system-app-content {
  flex: 1;
}
.j-new-99-software-security-tools-system-app-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}
.j-new-99-software-security-tools-system-app-desc {
  font-size: 13px;
  line-height: 22px;
  color: #94a3b8;
  margin: 0;
}
.j-new-99-software-security-tools-system-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 49, 43, 0.04) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .j-new-99-software-security-tools-system-panel-os,
  .j-new-99-software-security-tools-system-panel-app {
    grid-column: span 12;
  }
  .j-new-99-software-security-tools-system-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .j-new-99-software-security-tools-system-wrapper {
    padding: 60px 15px;
  }
  .j-new-99-software-security-tools-system-title {
    font-size: 30px;
    line-height: 40px;
  }
  .j-new-99-software-security-tools-system-os-grid {
    grid-template-columns: 1fr;
  }
  .j-new-99-software-security-tools-system-panel {
    padding: 24px;
  }
}
.j-new-99-software-security-tools-usecase-wrapper {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.j-new-99-software-security-tools-usecase-container {
  max-width: 1650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.j-new-99-software-security-tools-usecase-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
.j-new-99-software-security-tools-usecase-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.j-new-99-software-security-tools-usecase-title span {
  color: #ad1919;
}
.j-new-99-software-security-tools-usecase-intro {
  font-size: 16px;
  margin: 0 0 12px 0;
}
.j-new-99-software-security-tools-usecase-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.j-new-99-software-security-tools-usecase-card {
  background: #1f2937;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(14, 39, 70, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}
.j-new-99-software-security-tools-usecase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #242424 0, #ad1919 100%);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.j-new-99-software-security-tools-usecase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(14, 39, 70, 0.15);
  border-color: rgba(232, 49, 43, 0.3);
}
.j-new-99-software-security-tools-usecase-card:hover::before {
  opacity: 1;
}
.j-new-99-software-security-tools-usecase-card-large-1 {
  grid-column: span 7;
}
.j-new-99-software-security-tools-usecase-card-large-2 {
  grid-column: span 5;
}
.j-new-99-software-security-tools-usecase-card-large-3 {
  grid-column: span 6;
  padding: 35px;
}
.j-new-99-software-security-tools-usecase-card-standard {
  grid-column: span 4;
  padding: 35px;
}
.j-new-99-software-security-tools-usecase-watermark {
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 160px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.j-new-99-software-security-tools-usecase-card-standard
  .j-new-99-software-security-tools-usecase-watermark {
  font-size: 120px;
  bottom: -10px;
}
.j-new-99-software-security-tools-usecase-card:hover
  .j-new-99-software-security-tools-usecase-watermark {
  color: rgba(232, 49, 43, 0.05);
  transform: scale(1.05) translateX(-10px);
}
.j-new-99-software-security-tools-usecase-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.j-new-99-software-security-tools-usecase-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.j-new-99-software-security-tools-usecase-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(232, 49, 43, 0.08);
  border: 1px solid rgba(232, 49, 43, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ad1919;
  transition: all 0.4s ease;
}
.j-new-99-software-security-tools-usecase-card:hover
  .j-new-99-software-security-tools-usecase-icon-box {
  background: #ad1919;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(232, 49, 43, 0.3);
  transform: scale(1.05);
}
.j-new-99-software-security-tools-usecase-num-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}
.j-new-99-software-security-tools-usecase-card:hover
  .j-new-99-software-security-tools-usecase-num-tag {
  background: rgba(232, 49, 43, 0.1);
  border-color: rgba(232, 49, 43, 0.3);
  color: #ad1919;
}
.j-new-99-software-security-tools-usecase-heading {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 32px;
}
.j-new-99-software-security-tools-usecase-card-standard
  .j-new-99-software-security-tools-usecase-heading {
  font-size: 20px;
  line-height: 28px;
}
.j-new-99-software-security-tools-usecase-text {
  font-size: 16px;
  line-height: 26px;
  color: white;
  margin: 0;
}
@media (max-width: 1024px) {
  .j-new-99-software-security-tools-usecase-card-large-1,
  .j-new-99-software-security-tools-usecase-card-large-2 {
    grid-column: span 12;
  }
  .j-new-99-software-security-tools-usecase-card-standard {
    grid-column: span 6;
  }
  .j-new-99-software-security-tools-usecase-title {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 768px) {
  .j-new-99-software-security-tools-usecase-wrapper {
    padding: 60px 15px;
  }
  .j-new-99-software-security-tools-usecase-card-standard {
    grid-column: span 12;
  }
  .j-new-99-software-security-tools-usecase-title {
    font-size: 28px;
    line-height: 38px;
  }
  .j-new-99-software-security-tools-usecase-card {
    padding: 24px;
  }
  .j-new-99-software-security-tools-usecase-watermark {
    font-size: 100px;
    bottom: -10px;
    right: -10px;
  }
}
.j-new-99-software-security-tools-why-wrapper {
  padding: 60px 20px;
  background: #e2e2e2;
}
.j-new-99-software-security-tools-why-container {
  max-width: 1650px;
  margin: 0 auto;
}
.j-new-99-software-security-tools-why-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 64px auto;
}
.j-new-99-software-security-tools-why-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 24px 0;
}
.j-new-99-software-security-tools-why-title span {
  color: #ad1919;
}
.j-new-99-software-security-tools-why-intro {
  font-size: 16px;
  margin: 0 0 16px 0;
}
.j-new-99-software-security-tools-why-sub-intro {
  font-size: 16px;
  line-height: 28px;
  color: #52525b;
  margin: 0;
}
.j-new-99-software-security-tools-why-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.j-new-99-software-security-tools-why-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}
.j-new-99-software-security-tools-why-card {
  background-color: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}
.j-new-99-software-security-tools-why-card:hover {
  transform: translateY(-4px);
  border-color: #ad1919;
  box-shadow: 0 10px 30px rgba(14, 39, 70, 0.06);
}
.j-new-99-software-security-tools-why-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: #fafafa;
  border: 1px solid #f4f4f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ad1919;
  font-size: 24px;
  margin-bottom: 24px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.j-new-99-software-security-tools-why-card:hover
  .j-new-99-software-security-tools-why-icon-wrapper {
  background-color: #ad1919;
  color: #ffffff;
  border-color: #ad1919;
}
.j-new-99-software-security-tools-why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #18181b;
  margin: 0 0 16px 0;
  line-height: 26px;
}
.j-new-99-software-security-tools-why-card-text {
  font-size: 16px;
  margin: 0;
  flex-grow: 1;
}
.j-new-99-software-security-tools-why-highlight {
  background-color: rgba(232, 49, 43, 0.06);
  color: #ad1919;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(232, 49, 43, 0.15);
  font-size: 13.5px;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .j-new-99-software-security-tools-why-top-grid,
  .j-new-99-software-security-tools-why-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .j-new-99-software-security-tools-why-wrapper {
    padding: 60px 20px;
  }
  .j-new-99-software-security-tools-why-title {
    font-size: 32px;
    line-height: 42px;
  }
  .j-new-99-software-security-tools-why-top-grid,
  .j-new-99-software-security-tools-why-bottom-grid {
    grid-template-columns: 1fr;
  }
  .j-new-99-software-security-tools-why-card {
    padding: 24px;
  }
}
.j-new-99-software-security-tools-step-wrapper {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background: #e2e2e2;
}
.j-new-99-software-security-tools-step-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.j-new-99-software-security-tools-step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(14, 39, 70, 0.08);
  padding-bottom: 30px;
}
.j-new-99-software-security-tools-step-header-left {
  flex: 1;
  max-width: 550px;
}
.j-new-99-software-security-tools-step-header-right {
  flex: 1;
  max-width: 50%;
}
.j-new-99-software-security-tools-step-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
}
.j-new-99-software-security-tools-step-title span {
  color: #ad1919;
}
.j-new-99-software-security-tools-step-intro {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
.j-new-99-software-security-tools-step-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}
.j-new-99-software-security-tools-step-center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: #0e2746;
  border: 4px solid #ad1919;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 30px rgba(232, 49, 43, 0.3);
}
.j-new-99-software-security-tools-step-center-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(232, 49, 43, 0.4);
  animation: j-new-99-software-security-tools-step-pulse-anim 2s infinite;
  pointer-events: none;
}
@keyframes j-new-99-software-security-tools-step-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.j-new-99-software-security-tools-step-center-icon {
  font-size: 36px;
  color: #ffffff;
}
.j-new-99-software-security-tools-step-card {
  background: #1f2937;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 15px 35px rgba(14, 39, 70, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
  overflow: hidden;
}
.j-new-99-software-security-tools-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #242424 0, #ad1919 100%);
  opacity: 0.15;
  transition: opacity 0.4s ease;
}
.j-new-99-software-security-tools-step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.j-new-99-software-security-tools-step-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}
.j-new-99-software-security-tools-step-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(232, 49, 43, 0.08);
  border: 1px solid rgba(232, 49, 43, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.j-new-99-software-security-tools-step-icon {
  font-size: 22px;
  color: #ad1919;
  transition: color 0.4s ease;
}
.j-new-99-software-security-tools-step-badge-num {
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: rgba(232, 49, 43, 0.1);
  border: 1px solid rgba(232, 49, 43, 0.2);
  padding: 2px 10px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.j-new-99-software-security-tools-step-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 26px;
}
.j-new-99-software-security-tools-step-card-text {
  font-size: 16px;
  line-height: 22px;
  color: white;
  margin: 0 0 20px 0;
}
.j-new-99-software-security-tools-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}
.j-new-99-software-security-tools-step-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #e2e2e2;
}
.j-new-99-software-security-tools-step-list-item-bold {
  color: #ffffff;
  font-weight: 600;
}
.j-new-99-software-security-tools-step-checkmark {
  color: #ad1919;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  user-select: none;
}
.j-new-99-software-security-tools-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(14, 39, 70, 0.15);
  border-color: rgba(232, 49, 43, 0.25);
}
.j-new-99-software-security-tools-step-card:hover::before {
  opacity: 1;
}
.j-new-99-software-security-tools-step-card:hover
  .j-new-99-software-security-tools-step-icon-box {
  background: #ad1919;
  border-color: #ad1919;
  box-shadow: 0 6px 15px rgba(232, 49, 43, 0.3);
}
.j-new-99-software-security-tools-step-card:hover
  .j-new-99-software-security-tools-step-icon {
  color: #ffffff;
}
@media (max-width: 992px) {
  .j-new-99-software-security-tools-step-matrix {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .j-new-99-software-security-tools-step-center-hub {
    display: none;
  }
  .j-new-99-software-security-tools-step-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .j-new-99-software-security-tools-step-header-left,
  .j-new-99-software-security-tools-step-header-right {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .j-new-99-software-security-tools-step-wrapper {
    padding: 60px 15px;
  }
  .j-new-99-software-security-tools-step-title {
    font-size: 28px;
  }
}
.j-new-apac-network-wrapper {
  background-color: #1f2937;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.j-new-apac-network-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.j-new-apac-network-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
.j-new-apac-network-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #ffffff;
}
.j-new-apac-network-title span {
  color: #ffc1c1;
}
.j-new-apac-network-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  align-items: start;
}
.j-new-apac-network-card {
  background: #0f172a;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.j-new-apac-network-card-header {
  padding: 30px 30px 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}
.j-new-apac-network-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.j-new-apac-network-card-icon {
  color: #ffc1c1;
  font-size: 24px;
}
.j-new-apac-network-features-list {
  padding: 20px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.j-new-apac-network-feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.j-new-apac-network-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(4px);
}
.j-new-apac-network-feature-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.j-new-apac-network-feature-check {
  color: #22c55e;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
}
.j-new-apac-network-feature-name {
  font-size: 16px;
  font-weight: 500;
  color: white;
}
.j-new-apac-network-feature-value {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.j-new-apac-network-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.j-new-apac-network-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.j-new-apac-network-th {
  padding: 20px 30px;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.j-new-apac-network-tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease;
}
.j-new-apac-network-tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.j-new-apac-network-tr:last-child {
  border-bottom: 0;
}
.j-new-apac-network-td {
  padding: 20px 30px;
  font-size: 15px;
  color: #cbd5e1;
  vertical-align: middle;
}
.j-new-apac-network-dest {
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.j-new-apac-network-dest-icon {
  color: #64748b;
  font-size: 20px;
}
.j-new-apac-network-latency-val {
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
}
.j-new-apac-network-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.j-new-apac-network-status-ultra {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.j-new-apac-network-status-excel {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.2);
}
.j-new-apac-network-status-good {
  background: rgba(250, 204, 21, 0.1);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.2);
}
.j-new-apac-network-status-std {
  background: rgba(148, 163, 184, 0.1);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.j-new-apac-network-note {
  padding: 16px 30px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 10px;
}
.j-new-apac-network-note-icon {
  color: #ffc1c1;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .j-new-apac-network-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .j-new-apac-network-wrapper {
    padding: 60px 15px;
  }
  .j-new-apac-network-title {
    font-size: 32px;
    line-height: 42px;
  }
  .j-new-apac-network-card-header {
    padding: 24px;
  }
  .j-new-apac-network-features-list {
    padding: 20px 24px 24px 24px;
  }
  .j-new-apac-network-feature-item {
    padding: 14px 16px;
  }
  .j-new-apac-network-th,
  .j-new-apac-network-td,
  .j-new-apac-network-note {
    padding: 16px 20px;
  }
}
.j-new-99-network-select-wrapper {
  background-color: #f8fafc;
  padding: 60px 20px;
}
.j-new-99-network-select-container {
  max-width: 1500px;
  margin: 0 auto;
}
.j-new-99-network-select-header {
  text-align: center;
  margin-bottom: 60px;
}
.j-new-99-network-select-main-title {
  font-size: 35px;
  font-weight: 1200px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.j-new-99-network-select-intro {
  font-size: 16px;
  margin: 0 auto;
}
.j-new-99-network-select-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: flex-start;
}
.j-new-99-network-select-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.j-new-99-network-select-tab {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(14, 39, 70, 0.02);
  position: relative;
  overflow: hidden;
}
.j-new-99-network-select-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #ad1919;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.j-new-99-network-select-tab-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.j-new-99-network-select-tab-icon {
  font-size: 24px;
  color: #64748b;
  transition: color 0.3s ease;
}
.j-new-99-network-select-tab-title {
  font-size: 16px;
  font-weight: 700;
  color: #475569;
  transition: color 0.3s ease;
}
.j-new-99-network-select-tab-arrow {
  font-size: 20px;
  color: #cbd5e1;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
.j-new-99-network-select-tab:hover {
  border-color: #cbd5e1;
  transform: translateX(4px);
}
.j-new-99-network-select-tab-active {
  background-color: #1f2937;
  border-color: #1f2937;
  box-shadow: 0 10px 20px rgba(14, 39, 70, 0.15);
  transform: translateX(8px);
}
.j-new-99-network-select-tab-active:hover {
  transform: translateX(8px);
  border-color: #1f2937;
}
.j-new-99-network-select-tab-active::before {
  transform: scaleY(1);
}
.j-new-99-network-select-tab-active .j-new-99-network-select-tab-icon {
  color: #ad1919;
}
.j-new-99-network-select-tab-active .j-new-99-network-select-tab-title {
  color: #ffffff;
}
.j-new-99-network-select-tab-active .j-new-99-network-select-tab-arrow {
  color: #ad1919;
  transform: translateX(4px);
}
.j-new-99-network-select-content-area {
  position: relative;
  min-height: 550px;
}
.j-new-99-network-select-pane {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(14, 39, 70, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.j-new-99-network-select-pane-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}
.j-new-99-network-select-pane-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 30px;
}
.j-new-99-network-select-pane-title {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.j-new-99-network-select-pane-title i {
  color: #ad1919;
  font-size: 36px;
}
.j-new-99-network-select-pane-desc {
  font-size: 16px;
  line-height: 28px;
  color: #475569;
  margin: 0;
}
.j-new-99-network-select-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.j-new-99-network-select-list-box {
  display: flex;
  flex-direction: column;
}
.j-new-99-network-select-list-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.j-new-99-network-select-list-title i {
  font-size: 20px;
}
.j-new-99-network-select-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.j-new-99-network-select-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.j-new-99-network-select-icon-best {
  font-size: 20px;
  color: #10b981;
  margin-top: 2px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
}
.j-new-99-network-select-icon-feature {
  font-size: 20px;
  color: #3b82f6;
  margin-top: 2px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
}
.j-new-99-network-select-item-text {
  font-size: 15px;
  color: #334155;
  font-weight: 500;
  line-height: 24px;
}
.j-new-99-network-select-cta-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.j-new-99-network-select-cta-text {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}
.j-new-99-network-select-btn {
  background-color: #ad1919;
  color: #ffffff !important;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(232, 49, 43, 0.2);
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.j-new-99-network-select-btn:hover {
  background-color: #c9221d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 49, 43, 0.3);
}
@media (max-width: 1024px) {
  .j-new-99-network-select-layout {
    grid-template-columns: 1fr;
  }
  .j-new-99-network-select-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .j-new-99-network-select-tab {
    flex: 1;
    min-width: 250px;
  }
  .j-new-99-network-select-tab-active {
    transform: translateX(0) translateY(-4px);
  }
  .j-new-99-network-select-tab-active:hover {
    transform: translateX(0) translateY(-4px);
  }
  .j-new-99-network-select-tab::before {
    width: 100%;
    height: 4px;
    bottom: auto;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  .j-new-99-network-select-tab-active::before {
    transform: scaleX(1);
  }
}
@media (max-width: 768px) {
  .j-new-99-network-select-wrapper {
    padding: 60px 15px;
  }
  .j-new-99-network-select-main-title {
    font-size: 32px;
    line-height: 42px;
  }
  .j-new-99-network-select-pane {
    padding: 24px;
  }
  .j-new-99-network-select-pane-title {
    font-size: 24px;
  }
  .j-new-99-network-select-lists {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .j-new-99-network-select-cta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }
  .j-new-99-network-select-tab {
    min-width: 100%;
  }
}
.j-new-mig-mumbai-intro-wrapper {
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.j-new-mig-mumbai-intro-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0) 0%,
    rgba(241, 245, 249, 0.8) 100%
  );
  border-bottom-left-radius: 60px;
  z-index: 0;
}
.j-new-mig-mumbai-intro-container {
  max-width: 1650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.j-new-mig-mumbai-intro-grid {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 60px;
  align-items: center;
}
.j-new-mig-mumbai-intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.j-new-mig-mumbai-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgb(255 119 114 / 8%);
  color: #ac1919;
  border: 1px solid rgba(232, 49, 43, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.j-new-mig-mumbai-intro-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 24px 0;
}
.j-new-mig-mumbai-intro-title span {
  color: #ac1919;
}
.j-new-mig-mumbai-intro-text-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.j-new-mig-mumbai-intro-text {
  font-size: 16px;
  margin: 0;
}
.j-new-mig-mumbai-intro-text-highlight {
  font-weight: 600;
  color: #0e2746;
}
.j-new-mig-mumbai-intro-visual {
  position: relative;
}
.j-new-mig-mumbai-intro-image-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(14, 39, 70, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.j-new-mig-mumbai-intro-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.j-new-mig-mumbai-intro-stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(14, 39, 70, 0.04);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ac1919;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.j-new-mig-mumbai-intro-stat-item:hover .j-new-mig-mumbai-intro-stat-icon {
  background: #ac1919;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(232, 49, 43, 0.2);
  transform: scale(1.05);
}
.j-new-mig-mumbai-intro-stat-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.j-new-mig-mumbai-intro-stat-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.j-new-mig-mumbai-intro-stat-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}
.j-new-mig-mumbai-intro-dots {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(
    rgba(232, 49, 43, 0.15) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .j-new-mig-mumbai-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .j-new-mig-mumbai-intro-visual {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .j-new-mig-mumbai-intro-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .j-new-mig-mumbai-intro-wrapper {
    padding: 60px 15px;
  }
  .j-new-mig-mumbai-intro-title {
    font-size: 32px;
    line-height: 42px;
  }
  .j-new-mig-mumbai-intro-text {
    font-size: 16px;
    line-height: 28px;
  }
  .j-new-mig-mumbai-intro-image-box {
    padding: 30px 20px;
  }
}
.j-new-99-new-content-table-wrapper {
  padding: 60px 20px;
}
.j-new-99-new-content-table-container {
  max-width: 1650px;
  margin: 0 auto;
}
.j-new-99-new-content-table-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
.j-new-99-new-content-table-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.j-new-99-new-content-table-title span {
  color: #ac1919;
}
.j-new-99-new-content-table-intro {
  font-size: 16px;
  margin: 0;
}
@media (min-width: 993px) {
  .j-new-99-new-content-table-mobile {
    display: none !important;
  }
  .j-new-99-new-content-table-desktop {
    padding: 0 !important;
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(14, 39, 70, 0.04);
  }
}
@media (max-width: 992px) {
  .j-new-99-new-content-table-desktop {
    display: none !important;
  }
  .j-new-99-new-content-table-mobile {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.j-new-99-new-content-table-th {
  padding: 30px 24px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: black;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: bottom;
}
.j-new-99-new-content-table-th-feature {
  width: 300px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  vertical-align: bottom;
}
.j-new-99-new-content-table-th-standard {
  width: 450px;
  color: #475569;
}
.j-new-99-new-content-table-th-mumbai {
  width: 450px;
  background-color: rgba(232, 49, 43, 0.03);
  border-left: 1px solid rgba(232, 49, 43, 0.1);
  border-right: 1px solid rgba(232, 49, 43, 0.1);
  border-top: 3px solid #ac1919;
  text-align: center;
}
.j-new-99-new-content-table-column-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.j-new-99-new-content-table-th-mumbai .j-new-99-new-content-table-column-icon {
  color: #ac1919;
}
.j-new-99-new-content-table-th-standard
  .j-new-99-new-content-table-column-icon {
  color: #94a3b8;
}
.j-new-99-new-content-table-td {
  padding: 24px;
  font-size: 15px;
  line-height: 26px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  vertical-align: middle;
}
.j-new-99-new-content-table-tr:last-child .j-new-99-new-content-table-td {
  border-bottom: 0;
}
.j-new-99-new-content-table-td-feature {
  font-weight: 600;
  color: black;
  display: flex;
  align-items: center;
  gap: 12px;
}
.j-new-99-new-content-table-feature-icon {
  font-size: 20px;
  color: #ac1919;
  background: rgba(232, 49, 43, 0.06);
  border: 1px solid rgba(232, 49, 43, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.j-new-99-new-content-table-td-mumbai {
  background-color: rgba(232, 49, 43, 0.02);
  border-left: 1px solid rgba(232, 49, 43, 0.1);
  border-right: 1px solid rgba(232, 49, 43, 0.1);
  color: #0e2746;
}
.j-new-99-new-content-table-tr:hover .j-new-99-new-content-table-td-mumbai {
  background-color: rgba(232, 49, 43, 0.05);
}
.j-new-99-new-content-table-tr:hover .j-new-99-new-content-table-td {
  background-color: #f8fafc;
}
.j-new-99-new-content-table-tr:hover .j-new-99-new-content-table-td-mumbai {
  background-color: rgba(232, 49, 43, 0.05);
}
.j-new-99-new-content-table-td-standard {
  color: #222a36;
}
.j-new-99-new-content-table-highlight {
  font-weight: 600;
}
.j-new-99-new-content-table-mobile-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(14, 39, 70, 0.03);
}
.j-new-99-new-content-table-mobile-card-header {
  background: #f8fafc;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.j-new-99-new-content-table-mobile-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #0e2746;
  margin: 0;
}
.j-new-99-new-content-table-mobile-row {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #f1f5f9;
}
.j-new-99-new-content-table-mobile-row:last-child {
  border-bottom: 0;
}
.j-new-99-new-content-table-mobile-provider {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.j-new-99-new-content-table-mobile-provider-mumbai {
  color: #e8312b;
}
.j-new-99-new-content-table-mobile-provider-standard {
  color: #64748b;
  margin-top: 12px;
}
.j-new-99-new-content-table-mobile-desc {
  font-size: 14.5px;
  line-height: 24px;
  margin: 0;
}
.j-new-99-new-content-table-mobile-desc-mumbai {
  color: #0e2746;
  background: rgba(232, 49, 43, 0.03);
  padding: 12px 16px;
  border-left: 3px solid #e8312b;
  border-radius: 0 8px 8px 0;
}
.j-new-99-new-content-table-mobile-desc-standard {
  color: #475569;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .j-new-99-new-content-table-wrapper {
    padding: 60px 15px;
  }
  .j-new-99-new-content-table-title {
    font-size: 32px;
    line-height: 42px;
  }
}
.j-new-99-loc-brand-compare-table-wrapper {
  padding: 60px 20px;
}
.j-new-99-loc-brand-compare-table-container {
  max-width: 1650px;
  margin: 0 auto;
}
.j-new-99-loc-brand-compare-table-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
.j-new-99-loc-brand-compare-table-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.j-new-99-loc-brand-compare-table-title span {
  color: #ac1919;
}
.j-new-99-loc-brand-compare-table-intro {
  font-size: 16px;
  margin: 0;
}
.j-new-99-loc-brand-compare-table-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(14, 39, 70, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 40px;
}
.j-new-99-loc-brand-compare-table-scroll {
  overflow-x: auto;
  width: 100%;
}
.j-new-99-loc-brand-compare-table-matrix {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.j-new-99-loc-brand-compare-table-th {
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 600;
  color: black;
  background: #f8fafc;
  border-bottom: 2px solid #cbd5e1;
  vertical-align: top;
}
.j-new-99-loc-brand-compare-table-th-highlight {
  background: #fff5f5;
  color: #0e2746;
  border-bottom: 2px solid #ac1919;
  position: relative;
}
.j-new-99-loc-brand-compare-table-th-icon {
  color: #64748b;
  margin-right: 8px;
  font-size: 18px;
}
.j-new-99-loc-brand-compare-table-th-icon-blue {
  color: #1f2937;
}
.j-new-99-loc-brand-compare-table-th-highlight
  .j-new-99-loc-brand-compare-table-th-icon {
  color: #ac1919;
}
.j-new-99-loc-brand-compare-table-th-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  margin-top: 6px;
}
.j-new-99-loc-brand-compare-table-th-sub-light {
  color: #ac1919;
}
.j-new-99-loc-brand-compare-table-tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}
.j-new-99-loc-brand-compare-table-tr:hover {
  background: #f8fafc;
}
.j-new-99-loc-brand-compare-table-tr:last-child {
  border-bottom: 0;
}
.j-new-99-loc-brand-compare-table-td-metric {
  padding: 24px 28px;
  font-size: 15px;
  font-weight: 600;
  color: black;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
}
.j-new-99-loc-brand-compare-table-td-metric i {
  color: #1f2937;
  font-size: 18px;
}
.j-new-99-loc-brand-compare-table-td {
  padding: 24px 28px;
  font-size: 15px;
  line-height: 24px;
  color: #343537;
  vertical-align: middle;
  width: 300px;
  border: none;
}
.j-new-99-loc-brand-compare-table-td-highlight {
  background: #fff5f5;
  color: #0e2746;
  border-left: 1px solid rgba(232, 49, 43, 0.1);
  border-right: 1px solid rgba(232, 49, 43, 0.1);
}
.j-new-99-loc-brand-compare-table-td strong {
  color: black;
  font-weight: 600;
}
.j-new-99-loc-brand-compare-table-icon-check {
  color: #10b981;
  font-size: 16px;
  margin-right: 6px;
}
.j-new-99-loc-brand-compare-table-icon-cross {
  color: #ef4444;
  font-size: 16px;
  margin-right: 6px;
}
.j-new-99-loc-brand-compare-table-subtext {
  display: block;
  font-size: 145x;
  color: black;
  margin-top: 4px;
  font-weight: 400;
}
.j-new-99-loc-brand-compare-table-note {
  background: #eff6ff;
  border: 1px solid #febfbf;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.j-new-99-loc-brand-compare-table-note-icon {
  color: #1f2937;
  font-size: 22px;
  margin-top: 2px;
}
.j-new-99-loc-brand-compare-table-note-text {
  font-size: 15px;
  line-height: 24px;
  color: black;
  margin: 0;
}
.j-new-99-loc-brand-compare-table-note-text strong {
  color: #ac1919;
}
@media (max-width: 768px) {
  .j-new-99-loc-brand-compare-table-wrapper {
    padding: 60px 15px;
  }
  .j-new-99-loc-brand-compare-table-title {
    font-size: 28px;
    line-height: 38px;
  }
  .j-new-99-loc-brand-compare-table-note {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
}
.j-new-99-city-why-list-wrapper {
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}
.j-new-99-city-why-list-container {
  max-width: 1650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.j-new-99-city-why-list-header {
  text-align: center;
  max-width: 1500px;
  margin: 0 auto 60px auto;
}
.j-new-99-city-why-list-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 24px 0;
}
.j-new-99-city-why-list-title span {
  color: #ac1919;
}
.j-new-99-city-why-list-intro {
  font-size: 16px;
  margin: 0 0 16px 0;
}
.j-new-99-city-why-list-intro:last-child {
  margin-bottom: 0;
}
.j-new-99-city-why-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.j-new-99-city-why-list-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(14, 39, 70, 0.02);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.j-new-99-city-why-list-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ac1919;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}
.j-new-99-city-why-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(14, 39, 70, 0.06);
  border-color: rgba(232, 49, 43, 0.2);
}
.j-new-99-city-why-list-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(232, 49, 43, 0.06);
  border: 1px solid rgba(232, 49, 43, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ac1919;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.j-new-99-city-why-list-card:hover .j-new-99-city-why-list-icon-box {
  background: #ac1919;
  color: #ffffff;
  border-color: #ac1919;
  box-shadow: 0 8px 16px rgba(232, 49, 43, 0.2);
}
.j-new-99-city-why-list-content {
  flex: 1;
}
.j-new-99-city-why-list-item-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 26px;
}
.j-new-99-city-why-list-item-desc {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 1024px) {
  .j-new-99-city-why-list-grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .j-new-99-city-why-list-wrapper {
    padding: 60px 15px;
  }
  .j-new-99-city-why-list-header {
    margin-bottom: 40px;
  }
  .j-new-99-city-why-list-title {
    font-size: 32px;
    line-height: 42px;
  }
  .j-new-99-city-why-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .j-new-99-city-why-list-card {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
}
.j-new-99-country-workload-section-wrapper {
  padding: 60px 20px;
}
.j-new-99-country-workload-section-container {
  max-width: 1650px;
  margin: 0 auto;
}
.j-new-99-country-workload-section-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
.j-new-99-country-workload-section-title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.j-new-99-country-workload-section-title span {
  color: #ac1919;
}
.j-new-99-country-workload-section-intro {
  font-size: 16px;
  margin: 0;
}
.j-new-99-country-workload-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.j-new-99-country-workload-section-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 40px 32px;
  box-shadow: 0 10px 25px rgba(14, 39, 70, 0.03);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.j-new-99-country-workload-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ac1919;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.j-new-99-country-workload-section-card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  border-color: rgba(232, 49, 43, 0.2);
}
.j-new-99-country-workload-section-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(14, 39, 70, 0.04);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: black;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.j-new-99-country-workload-section-card:hover
  .j-new-99-country-workload-section-card-icon {
  background: #ac1919;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(232, 49, 43, 0.2);
  transform: scale(1.05);
}
.j-new-99-country-workload-section-card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
}
.j-new-99-country-workload-section-card-desc {
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 24px 0;
}
.j-new-99-country-workload-section-solution-box {
  background: #fff5f5;
  border-left: 3px solid #ac1919;
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin-top: auto;
}
.j-new-99-country-workload-section-solution-label {
  font-size: 13px;
  font-weight: 800;
  color: #ac1919;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.j-new-99-country-workload-section-solution-text {
  font-size: 14px;
  line-height: 24px;
  color: #334155;
  margin: 0;
  font-weight: 500;
}
.j-new-99-country-workload-section-table-area {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(14, 39, 70, 0.04);
}
.j-new-99-country-workload-section-table-header {
  text-align: center;
  margin-bottom: 40px;
}
.j-new-99-country-workload-section-table-title {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.j-new-99-country-workload-section-table-intro {
  font-size: 16px;
  margin: 0;
}
.j-new-99-country-workload-section-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.j-new-99-country-workload-section-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 100%;
}
.j-new-99-country-workload-section-th {
  background: #f8fafc;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #e2e8f0;
}
.j-new-99-country-workload-section-tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.3s ease;
}
.j-new-99-country-workload-section-tr:hover {
  background: #f8fafc;
}
.j-new-99-country-workload-section-tr:last-child {
  border-bottom: 0;
}
.j-new-99-country-workload-section-td {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 400;
  vertical-align: middle;
  line-height: 24px;
}
.j-new-99-country-workload-section-td-bold {
  font-weight: 600;
  color: black;
}
.j-new-99-country-workload-section-highlight-tag {
  background: rgba(232, 49, 43, 0.08);
  color: #ac1919;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid rgba(232, 49, 43, 0.15);
  display: inline-block;
}
@media (max-width: 1024px) {
  .j-new-99-country-workload-section-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .j-new-99-country-workload-section-wrapper {
    padding: 60px 15px;
  }
  .j-new-99-country-workload-section-title {
    font-size: 32px;
    line-height: 42px;
  }
  .j-new-99-country-workload-section-card {
    padding: 30px 24px;
  }
  .j-new-99-country-workload-section-table-area {
    padding: 30px 20px;
  }
  .j-new-99-country-workload-section-table-title {
    font-size: 24px;
  }
}
/* -------------------------- */
.j-new-99-data-tools-wrapper {
  background-color: #1f2937;
  background-image: radial-gradient(
    circle at 50% 0%,
    rgba(59, 130, 246, 0.05) 0%,
    transparent 70%
  );
  padding: 60px 20px;
  position: relative;
}

.j-new-99-data-tools-container {
  max-width: 1600px;
  margin: 0px auto;
  position: relative;
  z-index: 2;
}

.j-new-99-data-tools-header {
  text-align: center;
  max-width: 900px;
  margin: 0px auto 60px auto;
}

.j-new-99-data-tools-title {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin: 0px 0px 20px 0px;
}

.j-new-99-data-tools-intro {
  font-size: 17px;
  color: #c0c0c0;
  margin: 0px;
}

.j-new-99-data-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.j-new-99-data-tools-card {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.5) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.j-new-99-data-tools-card:hover {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
  border-color: #ac1919;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.7) 0%,
    rgba(15, 23, 42, 1) 100%
  );
}

.j-new-99-data-tools-card:hover::before {
  transform: scaleY(1);
}

.j-new-99-data-tools-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.j-new-99-data-tools-logo-box {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.j-new-99-data-tools-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.j-new-99-data-tools-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0px;
}

.j-new-99-data-tools-card-text {
  font-size: 16px;
  line-height: 28px;
  color: white;
  margin: 0px 0px 30px 0px;
  flex-grow: 1;
}

.j-new-99-data-tools-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffc0c0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.j-new-99-data-tools-card-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.j-new-99-data-tools-card-link:hover {
  color: #ffffff;
}

.j-new-99-data-tools-card-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .j-new-99-data-tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .j-new-99-data-tools-wrapper {
    padding: 60px 15px;
  }

  .j-new-99-data-tools-title {
    font-size: 30px;
  }

  .j-new-99-data-tools-card {
    padding: 30px 24px;
  }

  .j-new-99-data-tools-logo-box {
    width: 54px;
    height: 54px;
  }

  .j-new-99-data-tools-card-title {
    font-size: 20px;
  }
}
/* ----------------------- */
.j-new-99-data-manage-table-wrapper {
  padding: 60px 20px;
  position: relative;
}

.j-new-99-data-manage-table-container {
  max-width: 1600px;
  margin: 0px auto;
  position: relative;
  z-index: 2;
}

.j-new-99-data-manage-table-header {
  text-align: center;
  max-width: 1200px;
  margin: 0px auto 50px auto;
}

.j-new-99-data-manage-table-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
}

.j-new-99-data-manage-table-intro {
  font-size: 16px;
  margin: 0px;
}

.j-new-99-data-manage-table-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(14, 39, 70, 0.04);
  overflow: hidden;
  margin-bottom: 60px;
}

.j-new-99-data-manage-table-box-header {
  padding: 24px 30px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.j-new-99-data-manage-table-box-title {
  font-size: 20px;
  font-weight: 700;
  color: black;
  margin: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.j-new-99-data-manage-table-box-title i {
  color: #ac1919;
}

.j-new-99-data-manage-table-el {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.j-new-99-data-manage-table-th {
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e2e8f0;
  background: #f8fafc;
  white-space: nowrap;
}

.j-new-99-data-manage-table-tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.3s ease;
}

.j-new-99-data-manage-table-tr:hover {
  background: #f8fafc;
}

.j-new-99-data-manage-table-tr:last-child {
  border-bottom: 0px;
}

.j-new-99-data-manage-table-td {
  padding: 24px;
  font-size: 15px;
  line-height: 24px;
  vertical-align: top;
  font-weight: 500;
}

.j-new-99-data-manage-table-td-tier {
  font-weight: 700;
  color: black;
  font-size: 16px;
}

.j-new-99-data-manage-table-hardware-main {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.j-new-99-data-manage-table-hardware-sub {
  font-size: 13px;
  color: #64748b;
  display: block;
}

.j-new-99-data-manage-table-highlight-tag {
  display: inline-block;
  color: #117a00;
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.j-new-99-data-manage-table-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.j-new-99-data-manage-table-note-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0px 10px 25px rgba(14, 39, 70, 0.03);
  transition: all 0.3s ease;
}

.j-new-99-data-manage-table-note-card:hover {
  transform: translateY(-5px);
  border-color: rgb(172 25 25 / 30%);
  box-shadow: 0px 15px 35px rgba(14, 39, 70, 0.06);
}

.j-new-99-data-manage-table-note-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ac1919;
  flex-shrink: 0;
}

.j-new-99-data-manage-table-note-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0px 0px 10px 0px;
}

.j-new-99-data-manage-table-note-content p {
  font-size: 16px;
  margin: 0px;
}

@media (max-width: 1024px) {
  .j-new-99-data-manage-table-notes-grid {
    grid-template-columns: 1fr;
  }

  .j-new-99-data-manage-table-el,
  .j-new-99-data-manage-table-thead,
  .j-new-99-data-manage-table-tbody,
  .j-new-99-data-manage-table-th,
  .j-new-99-data-manage-table-td,
  .j-new-99-data-manage-table-tr {
    display: block;
  }

  .j-new-99-data-manage-table-thead {
    display: none;
  }

  .j-new-99-data-manage-table-tr {
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0px;
  }

  .j-new-99-data-manage-table-tr:last-child {
    border-bottom: 0px;
  }

  .j-new-99-data-manage-table-td {
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .j-new-99-data-manage-table-td::before {
    content: attr(data-label);
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .j-new-99-data-manage-table-td-tier {
    background: #f1f5f9;
    padding: 16px 24px;
    font-size: 18px;
    border-bottom: 1px solid #e2e8f0;
  }

  .j-new-99-data-manage-table-td-tier::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .j-new-99-data-manage-table-wrapper {
    padding: 60px 15px;
  }

  .j-new-99-data-manage-table-title {
    font-size: 30px;
  }

  .j-new-99-data-manage-table-note-card {
    flex-direction: column;
    padding: 24px;
  }
}
.j-new-99-data-complaince-wrapper {
  padding: 60px 20px;
}

.j-new-99-data-complaince-container {
  max-width: 1600px;
  margin: 0px auto;
}

.j-new-99-data-complaince-header {
  text-align: center;
  max-width: 1200px;
  margin: 0px auto 60px auto;
}


.j-new-99-data-complaince-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
}

.j-new-99-data-complaince-title span {
}

.j-new-99-data-complaince-intro {
  font-size: 17px;
  margin: 0px;
}

.j-new-99-data-complaince-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.j-new-99-data-complaince-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(14, 39, 70, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.j-new-99-data-complaince-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 20px 40px rgba(14, 39, 70, 0.08);
  border-color: #cbd5e1;
}

.j-new-99-data-complaince-card-header {
  background: #f8fafc;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.4s ease;
}

.j-new-99-data-complaince-card:hover .j-new-99-data-complaince-card-header {
  background: #f1f5f9;
}

.j-new-99-data-complaince-icon-wrap {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ac1919;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 4px 10px rgba(14, 39, 70, 0.04);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.j-new-99-data-complaince-card:hover .j-new-99-data-complaince-icon-wrap {
  background: #ac1919;
  color: #ffffff;
  border-color: #ac1919;
  box-shadow: 0px 8px 16px rgba(59, 130, 246, 0.25);
  transform: scale(1.05);
}

.j-new-99-data-complaince-card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0px;
}

.j-new-99-data-complaince-sub-list {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}

.j-new-99-data-complaince-sub-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.j-new-99-data-complaince-sub-item:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}

.j-new-99-data-complaince-check-icon {
  width: 24px;
  height: 24px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.j-new-99-data-complaince-sub-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.j-new-99-data-complaince-sub-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0px;
}

.j-new-99-data-complaince-sub-desc {
  font-size: 15px;
  line-height: 24px;
  margin: 0px;
}

@media (max-width: 1024px) {
  .j-new-99-data-complaince-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .j-new-99-data-complaince-wrapper {
    padding: 60px 15px;
  }

  .j-new-99-data-complaince-title {
    font-size: 30px;
  }

  .j-new-99-data-complaince-card-header {
    padding: 20px;
  }

  .j-new-99-data-complaince-sub-list {
    padding: 15px;
  }
}
