.landing-wrap {
  width: 100%;
  background: #0d1117;
}
.landing-wrap .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.landing-wrap .header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.landing-wrap .header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-wrap .header .logo .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.landing-wrap .header .logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.landing-wrap .header .nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.landing-wrap .header .nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.landing-wrap .header .nav .nav-link:hover {
  color: #fff;
}
.landing-wrap .header .nav .nav-link nz-icon {
  font-size: 12px;
}
.landing-wrap .header .right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-wrap .header .right .btn-apply {
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 600;
}
.landing-wrap .hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
}
.landing-wrap .hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
  z-index: 2;
}
.landing-wrap .hero .hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}
.landing-wrap .hero .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.landing-wrap .hero .hero-buttons .btn-quote {
  height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  border-color: #fff;
  color: #0d1117;
}
.landing-wrap .hero .hero-buttons .btn-quote:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}
.landing-wrap .hero .hero-buttons .btn-apply-hero {
  height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}
.landing-wrap .hero > .inner {
  position: relative;
  z-index: 2;
}
.landing-wrap .hero .hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.landing-wrap .hero .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-wrap .dashboard-preview {
  background: linear-gradient(180deg, #161b22 0%, #0d1117 100%);
}
.landing-wrap .dashboard-preview .dashboard-card {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #161b22;
}
.landing-wrap .dashboard-preview .dashboard-card > img {
  width: 100%;
  height: auto;
  display: block;
}
.landing-wrap .test-system {
  padding: 100px 0;
  background: #fff;
}
.landing-wrap .test-system .section-label {
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 10px;
}
.landing-wrap .test-system .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}
.landing-wrap .test-system .section-desc {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 40px;
}
.landing-wrap .test-system .test-system-content {
  display: flex;
  gap: 30px;
  align-items: center;
}
.landing-wrap .test-system .test-system-content .feature-list {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.landing-wrap .test-system .test-system-content .feature-list .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.landing-wrap .test-system .test-system-content .feature-list .feature-item .feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.landing-wrap .test-system .test-system-content .feature-list .feature-item .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.landing-wrap .test-system .test-system-content .feature-list .feature-item .feature-text {
  flex: 1;
}
.landing-wrap .test-system .test-system-content .feature-list .feature-item .feature-text .feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}
.landing-wrap .test-system .test-system-content .feature-list .feature-item .feature-text .feature-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}
.landing-wrap .test-system .test-system-content .feature-images {
  flex: 1;
  position: relative;
  min-height: 400px;
}
.landing-wrap .test-system .test-system-content .feature-images .feature-img {
  width: 100%;
}
.landing-wrap .test-type {
  padding: 80px 0;
  background: #f7f7f7;
}
.landing-wrap .test-type .test-type-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 60px;
}
.landing-wrap .test-type .test-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.landing-wrap .test-type .test-type-grid .test-type-card {
  text-align: center;
  padding: 20px;
}
.landing-wrap .test-type .test-type-grid .test-type-card .test-type-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-wrap .test-type .test-type-grid .test-type-card .test-type-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.landing-wrap .test-type .test-type-grid .test-type-card .test-type-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}
.landing-wrap .test-type .test-type-grid .test-type-card .test-type-card-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}
.landing-wrap .test-process {
  padding: 100px 0;
  background: #fff;
}
.landing-wrap .test-process .section-label {
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 10px;
}
.landing-wrap .test-process .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}
.landing-wrap .test-process .section-desc {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 60px;
}
.landing-wrap .test-process .test-process-content {
  display: flex;
  gap: 20px;
  align-items: center;
}
.landing-wrap .test-process .test-process-content .process-list {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}
.landing-wrap .test-process .test-process-content .process-list .process-item {
  display: flex;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100px;
}
.landing-wrap .test-process .test-process-content .process-list .process-item .process-bar {
  width: 4px;
  height: 100%;
  background: #e5e7eb;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.landing-wrap .test-process .test-process-content .process-list .process-item .process-text {
  flex: 1;
}
.landing-wrap .test-process .test-process-content .process-list .process-item .process-text .process-title {
  font-size: 20px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.landing-wrap .test-process .test-process-content .process-list .process-item .process-text .process-desc {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.6;
  transition: color 0.3s ease;
  margin-bottom: 0;
}
.landing-wrap .test-process .test-process-content .process-list .process-item:hover .process-text .process-title {
  color: #6b7280;
}
.landing-wrap .test-process .test-process-content .process-list .process-item:hover .process-text .process-desc {
  color: #9ca3af;
}
.landing-wrap .test-process .test-process-content .process-list .process-item.active .process-bar {
  background: #3b82f6;
}
.landing-wrap .test-process .test-process-content .process-list .process-item.active .process-text .process-title {
  color: #1f2937;
}
.landing-wrap .test-process .test-process-content .process-list .process-item.active .process-text .process-desc {
  color: #6b7280;
}
.landing-wrap .test-process .test-process-content .process-image {
  flex: 1;
}
.landing-wrap .test-process .test-process-content .process-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.landing-wrap .partner {
  padding: 80px 0;
  background: #f7f7f7;
}
.landing-wrap .partner .partner-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  margin-bottom: 50px;
}
.landing-wrap .partner .partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.landing-wrap .partner .partner-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 1;
  transition: all 0.3s ease;
}
.landing-wrap .cta-banner {
  padding: 50px 0;
  background: #1e3a5f;
}
.landing-wrap .cta-banner .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-wrap .cta-banner .cta-content .cta-text .cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.landing-wrap .cta-banner .cta-content .cta-text .cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.landing-wrap .cta-banner .cta-content .cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.landing-wrap .cta-banner .cta-content .cta-buttons .btn-quote {
  height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.landing-wrap .cta-banner .cta-content .cta-buttons .btn-quote:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.landing-wrap .cta-banner .cta-content .cta-buttons .btn-apply {
  height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
}
.landing-wrap .footer {
  background: #f8f9fa;
  padding: 60px 0 40px;
}
.landing-wrap .footer .footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}
.landing-wrap .footer .footer-top .footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.landing-wrap .footer .footer-top .footer-left .footer-logo img {
  height: 28px;
  width: auto;
}
.landing-wrap .footer .footer-top .footer-left .footer-nav {
  display: flex;
  gap: 24px;
}
.landing-wrap .footer .footer-top .footer-left .footer-nav a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.landing-wrap .footer .footer-top .footer-left .footer-nav a:hover {
  color: #1f2937;
}
.landing-wrap .footer .footer-top .footer-right {
  flex: 1;
  min-width: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.65;
  color: #475467;
}
.landing-wrap .footer .footer-top .footer-right a {
  color: #0080ff;
  text-decoration: none;
}
.landing-wrap .footer .footer-top .footer-right a:hover {
  text-decoration: underline;
}
.landing-wrap .footer .footer-top .footer-right .footer-block-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #101828;
}
.landing-wrap .footer .footer-top .footer-right .footer-phone {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #101828;
  letter-spacing: -0.02em;
}
.landing-wrap .footer .footer-top .footer-right .footer-phone a {
  color: inherit;
}
.landing-wrap .footer .footer-top .footer-right .footer-phone a:hover {
  color: #0080ff;
}
.landing-wrap .footer .footer-top .footer-right .footer-meta {
  margin: 0 0 20px;
  color: #505050;
}
.landing-wrap .footer .footer-top .footer-right .footer-legal p {
  margin: 0 0 8px;
}
.landing-wrap .footer .footer-top .footer-right .footer-legal p:last-child {
  margin-bottom: 0;
}
.landing-wrap .footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
}
.landing-wrap .footer .footer-bottom .copyright {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}
.landing-wrap .footer .footer-bottom .footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.landing-wrap .footer .footer-bottom .footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: #667085;
  text-decoration: none;
  transition: color 0.2s ease;
}
.landing-wrap .footer .footer-bottom .footer-links a:hover {
  color: #0080ff;
}
.landing-wrap .footer .footer-bottom .footer-links a:focus-visible {
  outline: 2px solid #0080ff;
  outline-offset: 2px;
  border-radius: 2px;
}
.landing-wrap .footer .footer-bottom .footer-links a:first-child::after {
  content: "|";
  margin: 0 14px;
  color: #d1d5db;
  font-weight: 400;
  pointer-events: none;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .landing-wrap .header .nav {
    display: none;
  }
  .landing-wrap .header .btn-apply {
    display: none;
  }
  .landing-wrap .hero {
    padding: 120px 0 60px;
  }
  .landing-wrap .hero .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .landing-wrap .hero .hero-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .landing-wrap .hero .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .landing-wrap .hero .hero-buttons .btn-quote,
  .landing-wrap .hero .hero-buttons .btn-apply-hero {
    width: 100%;
    max-width: 280px;
  }
  .landing-wrap .test-system {
    padding: 60px 0;
  }
  .landing-wrap .test-system .section-title {
    font-size: 28px;
  }
  .landing-wrap .test-system .section-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .landing-wrap .test-system .test-system-content {
    flex-direction: column;
  }
  .landing-wrap .test-system .test-system-content .feature-list {
    flex: 1;
    gap: 30px;
  }
  .landing-wrap .test-system .test-system-content .feature-images {
    min-height: 300px;
    margin-top: 40px;
  }
  .landing-wrap .test-type {
    padding: 60px 0;
  }
  .landing-wrap .test-type .test-type-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .landing-wrap .test-type .test-type-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .landing-wrap .test-process {
    padding: 60px 0;
  }
  .landing-wrap .test-process .section-title {
    font-size: 28px;
  }
  .landing-wrap .test-process .section-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .landing-wrap .test-process .test-process-content {
    flex-direction: column;
  }
  .landing-wrap .test-process .test-process-content .process-list {
    flex: 1;
    width: 100%;
  }
  .landing-wrap .test-process .test-process-content .process-list .process-item {
    height: 100px;
    gap: 16px;
  }
  .landing-wrap .test-process .test-process-content .process-list .process-item .process-text .process-title {
    font-size: 16px;
  }
  .landing-wrap .test-process .test-process-content .process-list .process-item .process-text .process-desc {
    font-size: 13px;
  }
  .landing-wrap .test-process .test-process-content .process-image {
    margin-top: 40px;
  }
  .landing-wrap .partner {
    padding: 60px 0;
  }
  .landing-wrap .partner .partner-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .landing-wrap .partner .partner-logos {
    flex-wrap: wrap;
    gap: 40px 60px;
  }
  .landing-wrap .partner .partner-logo img {
    height: 32px;
  }
  .landing-wrap .cta-banner {
    padding: 40px 0;
  }
  .landing-wrap .cta-banner .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .landing-wrap .cta-banner .cta-content .cta-text .cta-title {
    font-size: 22px;
  }
  .landing-wrap .cta-banner .cta-content .cta-text .cta-desc {
    font-size: 14px;
  }
  .landing-wrap .cta-banner .cta-content .cta-buttons {
    justify-content: center;
  }
  .landing-wrap .footer {
    padding: 40px 0 30px;
  }
  .landing-wrap .footer .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .landing-wrap .footer .footer-top .footer-left {
    align-items: center;
    text-align: center;
  }
  .landing-wrap .footer .footer-top .footer-left .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .landing-wrap .footer .footer-top .footer-right {
    max-width: none;
    text-align: left;
    width: 100%;
  }
  .landing-wrap .footer .footer-top .footer-right .footer-phone {
    font-size: 20px;
  }
  .landing-wrap .footer .footer-top .footer-right .footer-meta {
    font-size: 13px;
  }
  .landing-wrap .footer .footer-top .footer-right .footer-legal {
    font-size: 13px;
  }
  .landing-wrap .footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .landing-wrap .footer .footer-bottom .copyright {
    font-size: 12px;
  }
  .landing-wrap .footer .footer-bottom .footer-links {
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .landing-wrap .hero {
    padding: 100px 0 50px;
  }
  .landing-wrap .hero .hero-title {
    font-size: 26px;
  }
  .landing-wrap .hero .hero-desc {
    font-size: 14px;
  }
  .landing-wrap .hero .hero-buttons .btn-quote,
  .landing-wrap .hero .hero-buttons .btn-apply-hero {
    height: 44px;
    font-size: 14px;
  }
  .landing-wrap .test-system {
    padding: 50px 0;
  }
  .landing-wrap .test-system .section-label {
    font-size: 14px;
  }
  .landing-wrap .test-system .section-title {
    font-size: 24px;
  }
  .landing-wrap .test-system .section-desc {
    font-size: 14px;
  }
  .landing-wrap .test-system .test-system-content .feature-list {
    gap: 24px;
  }
  .landing-wrap .test-system .test-system-content .feature-list .feature-item .feature-icon {
    width: 40px;
    height: 40px;
  }
  .landing-wrap .test-system .test-system-content .feature-list .feature-item .feature-text .feature-title {
    font-size: 16px;
  }
  .landing-wrap .test-system .test-system-content .feature-list .feature-item .feature-text .feature-desc {
    font-size: 14px;
  }
  .landing-wrap .test-type {
    padding: 50px 0;
  }
  .landing-wrap .test-type .test-type-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .landing-wrap .test-type .test-type-grid .test-type-card .test-type-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .landing-wrap .test-type .test-type-grid .test-type-card .test-type-card-title {
    font-size: 16px;
  }
  .landing-wrap .test-type .test-type-grid .test-type-card .test-type-card-desc {
    font-size: 14px;
  }
  .landing-wrap .test-process {
    padding: 50px 0;
  }
  .landing-wrap .test-process .section-label {
    font-size: 14px;
  }
  .landing-wrap .test-process .section-title {
    font-size: 24px;
  }
  .landing-wrap .test-process .section-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .landing-wrap .test-process .test-process-content .process-list .process-item {
    height: 100px;
    gap: 16px;
  }
  .landing-wrap .test-process .test-process-content .process-list .process-item .process-text .process-title {
    font-size: 16px;
  }
  .landing-wrap .test-process .test-process-content .process-list .process-item .process-text .process-desc {
    font-size: 13px;
  }
  .landing-wrap .partner {
    padding: 50px 0;
  }
  .landing-wrap .partner .partner-title {
    font-size: 16px;
    padding: 0 20px;
  }
  .landing-wrap .partner .partner-logos {
    gap: 24px 40px;
  }
  .landing-wrap .partner .partner-logo img {
    height: 24px;
  }
  .landing-wrap .cta-banner {
    padding: 30px 0;
  }
  .landing-wrap .cta-banner .cta-content .cta-text .cta-title {
    font-size: 18px;
  }
  .landing-wrap .cta-banner .cta-content .cta-text .cta-desc {
    font-size: 13px;
  }
  .landing-wrap .cta-banner .cta-content .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .landing-wrap .cta-banner .cta-content .cta-buttons .btn-quote,
  .landing-wrap .cta-banner .cta-content .cta-buttons .btn-apply {
    width: 100%;
    max-width: 260px;
  }
  .landing-wrap .footer .footer-top .footer-left .footer-nav {
    gap: 16px;
  }
  .landing-wrap .footer .footer-top .footer-left .footer-nav a {
    font-size: 13px;
  }
  .landing-wrap .footer .footer-top .footer-right .footer-meta,
  .landing-wrap .footer .footer-top .footer-right .footer-legal {
    font-size: 12px;
  }
  .landing-wrap .footer .footer-bottom .copyright,
  .landing-wrap .footer .footer-bottom .footer-links a {
    font-size: 12px;
  }
}
