@charset "UTF-8";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #dce2ec;
  background: #080c14;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.sslokx-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(8, 12, 20, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 108, 255, 0.12);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.sslokx-navbar:hover {
  border-bottom-color: rgba(10, 108, 255, 0.28);
}

.sslokx-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  transition: opacity 0.25s ease;
}

.sslokx-nav-logo:hover {
  opacity: 0.85;
}

.sslokx-nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0a6cff 0%, #00d4aa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.sslokx-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sslokx-nav-links a {
  text-decoration: none;
  color: #8b95a5;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 6px 0;
}

.sslokx-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0a6cff, #00d4aa);
  border-radius: 1px;
  transition: width 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sslokx-nav-links a:hover {
  color: #ffffff;
}

.sslokx-nav-links a:hover::after {
  width: 100%;
}

.sslokx-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sslokx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  border: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  min-width: 100px;
}

.sslokx-btn-primary {
  background: linear-gradient(135deg, #0a6cff 0%, #0060e0 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(10, 108, 255, 0.35);
}

.sslokx-btn-primary:hover {
  background: linear-gradient(135deg, #1a7aff 0%, #0a6cff 100%);
  box-shadow: 0 6px 26px rgba(10, 108, 255, 0.5);
  transform: translateY(-2px);
}

.sslokx-btn-outline {
  background: transparent;
  color: #0a6cff;
  border: 2px solid rgba(10, 108, 255, 0.45);
}

.sslokx-btn-outline:hover {
  border-color: #0a6cff;
  background: rgba(10, 108, 255, 0.08);
  color: #3d8eff;
  transform: translateY(-2px);
}

.sslokx-btn-accent {
  background: linear-gradient(135deg, #00d4aa 0%, #00a884 100%);
  color: #080c14;
  box-shadow: 0 4px 18px rgba(0, 212, 170, 0.35);
  font-weight: 700;
}

.sslokx-btn-accent:hover {
  background: linear-gradient(135deg, #00e6b8 0%, #00d4aa 100%);
  box-shadow: 0 6px 26px rgba(0, 212, 170, 0.5);
  transform: translateY(-2px);
}

.sslokx-btn-lg {
  padding: 16px 36px;
  font-size: 20px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.sslokx-btn-xl {
  padding: 20px 44px;
  font-size: 22px;
  border-radius: 14px;
  letter-spacing: 0.6px;
  min-width: 180px;
}

.sslokx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(10, 108, 255, 0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 60%, rgba(0, 212, 170, 0.06) 0%, transparent 55%),
              #080c14;
}

.sslokx-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(10, 108, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.sslokx-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(10, 108, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 108, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.sslokx-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

.sslokx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(10, 108, 255, 0.1);
  border: 1px solid rgba(10, 108, 255, 0.2);
  font-size: 18px;
  color: #3d8eff;
  margin-bottom: 32px;
  letter-spacing: 0.4px;
}

.sslokx-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d4aa;
  box-shadow: 0 0 10px rgba(0, 212, 170, 0.6);
  animation: sslokx-pulse-dot 2s ease-in-out infinite;
}

@keyframes sslokx-pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 212, 170, 0.4); }
  50% { box-shadow: 0 0 22px rgba(0, 212, 170, 0.8); }
}

.sslokx-hero-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #ffffff 0%, #b8ccf0 50%, #3d8eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.sslokx-hero-subtitle {
  font-size: 22px;
  color: #8b95a5;
  margin: 0 0 44px;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.sslokx-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sslokx-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sslokx-hero-stat-item {
  text-align: center;
}

.sslokx-hero-stat-num {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.sslokx-hero-stat-label {
  font-size: 18px;
  color: #5a6578;
  margin-top: 6px;
}

.sslokx-section {
  padding: 100px 48px;
  position: relative;
}

.sslokx-section-dark {
  background: #0a0f1a;
}

.sslokx-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.sslokx-section-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #0a6cff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.sslokx-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
  letter-spacing: -0.3px;
}

.sslokx-section-desc {
  font-size: 20px;
  color: #6b7a90;
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.7;
}

.sslokx-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.sslokx-feature-card {
  background: rgba(15, 20, 35, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 38px 32px;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.sslokx-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 108, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sslokx-feature-card:hover {
  border-color: rgba(10, 108, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.sslokx-feature-card:hover::before {
  opacity: 1;
}

.sslokx-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  position: relative;
}

.sslokx-feature-icon-blue {
  background: rgba(10, 108, 255, 0.12);
  color: #3d8eff;
}

.sslokx-feature-icon-green {
  background: rgba(0, 212, 170, 0.12);
  color: #00d4aa;
}

.sslokx-feature-icon-purple {
  background: rgba(138, 90, 255, 0.12);
  color: #9b6dff;
}

.sslokx-feature-icon-orange {
  background: rgba(255, 140, 40, 0.12);
  color: #ff9d3c;
}

.sslokx-feature-icon-cyan {
  background: rgba(0, 196, 224, 0.12);
  color: #00cce0;
}

.sslokx-feature-icon-pink {
  background: rgba(255, 80, 140, 0.12);
  color: #ff5a8c;
}

.sslokx-feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.sslokx-feature-text {
  font-size: 18px;
  color: #6b7a90;
  line-height: 1.7;
  margin: 0;
}

.sslokx-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.sslokx-advantage-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 16px;
  background: rgba(15, 20, 35, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.35s ease;
}

.sslokx-advantage-item:hover {
  border-color: rgba(10, 108, 255, 0.18);
  background: rgba(15, 20, 35, 0.8);
}

.sslokx-advantage-index {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0a6cff, #0060e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.sslokx-advantage-info h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.sslokx-advantage-info p {
  font-size: 18px;
  color: #6b7a90;
  margin: 0;
  line-height: 1.7;
}

.sslokx-download-zone {
  background: linear-gradient(160deg, #0a0f1a 0%, #0d1528 40%, #0a1224 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.sslokx-download-zone::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 108, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sslokx-download-zone::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.sslokx-download-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sslokx-download-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.sslokx-download-subtitle {
  font-size: 20px;
  color: #6b7a90;
  margin: 0 0 48px;
}

.sslokx-download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.sslokx-download-card {
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 28px;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
}

.sslokx-download-card:hover {
  border-color: rgba(10, 108, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.sslokx-download-card-highlight {
  border-color: rgba(0, 212, 170, 0.25);
  background: rgba(0, 212, 170, 0.04);
}

.sslokx-download-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00d4aa, #00a884);
  color: #080c14;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.sslokx-download-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: rgba(10, 108, 255, 0.1);
  color: #3d8eff;
}

.sslokx-download-card-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.sslokx-download-card-ver {
  font-size: 18px;
  color: #5a6578;
  margin: 0 0 18px;
}

.sslokx-download-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #0a6cff, #0060e0);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(10, 108, 255, 0.3);
}

.sslokx-download-card-btn:hover {
  background: linear-gradient(135deg, #1a7aff, #0a6cff);
  box-shadow: 0 6px 24px rgba(10, 108, 255, 0.5);
  transform: translateY(-2px);
}

.sslokx-download-card-btn-accent {
  background: linear-gradient(135deg, #00d4aa, #00a884);
  color: #080c14;
  box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.sslokx-download-card-btn-accent:hover {
  background: linear-gradient(135deg, #00e6b8, #00d4aa);
  box-shadow: 0 6px 24px rgba(0, 212, 170, 0.5);
}

.sslokx-download-note {
  font-size: 18px;
  color: #4a5568;
  margin: 0;
}

.sslokx-security-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px;
  margin: 0 auto;
  max-width: 1000px;
  background: rgba(15, 20, 35, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  flex-wrap: wrap;
}

.sslokx-security-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sslokx-security-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 212, 170, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00d4aa;
  flex-shrink: 0;
}

.sslokx-security-text {
  font-size: 18px;
  color: #8b95a5;
}

.sslokx-security-text strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.sslokx-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.sslokx-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: rgba(15, 20, 35, 0.4);
  transition: border-color 0.3s ease;
}

.sslokx-faq-item:hover {
  border-color: rgba(10, 108, 255, 0.2);
}

.sslokx-faq-q {
  padding: 24px 28px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.sslokx-faq-q:hover {
  color: #3d8eff;
}

.sslokx-faq-arrow {
  font-size: 22px;
  color: #0a6cff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sslokx-faq-a {
  padding: 0 28px 24px;
  font-size: 18px;
  color: #6b7a90;
  line-height: 1.8;
  display: none;
}

.sslokx-faq-a.sslokx-active {
  display: block;
}

.sslokx-footer {
  background: #060a12;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 48px 36px;
}

.sslokx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.sslokx-footer-brand {
  font-size: 18px;
}

.sslokx-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.sslokx-footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0a6cff, #00d4aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.sslokx-footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.sslokx-footer-desc {
  color: #5a6578;
  line-height: 1.8;
  margin: 0 0 20px;
  max-width: 340px;
}

.sslokx-footer-col-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
}

.sslokx-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sslokx-footer-links li {
  margin-bottom: 12px;
}

.sslokx-footer-links a {
  color: #5a6578;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.25s ease;
}

.sslokx-footer-links a:hover {
  color: #3d8eff;
}

.sslokx-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.sslokx-footer-copy {
  font-size: 18px;
  color: #3d4a5c;
  margin: 0;
}

.sslokx-footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sslokx-footer-bottom-links a {
  color: #3d4a5c;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.25s ease;
}

.sslokx-footer-bottom-links a:hover {
  color: #5a6578;
}

.sslokx-download-page {
  padding-top: 72px;
}

.sslokx-download-hero {
  padding: 100px 48px 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(10, 108, 255, 0.08) 0%, transparent 60%),
              #080c14;
  position: relative;
}

.sslokx-download-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 18px;
  letter-spacing: -0.3px;
}

.sslokx-download-hero-desc {
  font-size: 22px;
  color: #6b7a90;
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.sslokx-download-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.sslokx-platform-card {
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 44px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
}

.sslokx-platform-card:hover {
  border-color: rgba(10, 108, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sslokx-platform-card-recommend {
  border-color: rgba(0, 212, 170, 0.3);
  background: rgba(0, 212, 170, 0.03);
}

.sslokx-platform-card-recommend::before {
  content: '推荐';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00d4aa, #00a884);
  color: #080c14;
  font-size: 18px;
  font-weight: 700;
}

.sslokx-platform-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: rgba(10, 108, 255, 0.1);
  color: #3d8eff;
}

.sslokx-platform-name {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.sslokx-platform-ver {
  font-size: 18px;
  color: #5a6578;
  margin: 0 0 8px;
}

.sslokx-platform-size {
  font-size: 18px;
  color: #3d4a5c;
  margin: 0 0 24px;
}

.sslokx-platform-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
}

.sslokx-platform-features li {
  font-size: 18px;
  color: #6b7a90;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.sslokx-platform-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4aa;
  font-weight: 700;
}

.sslokx-install-guide {
  padding: 100px 48px;
  background: #0a0f1a;
}

.sslokx-install-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.sslokx-install-step {
  text-align: center;
  position: relative;
}

.sslokx-install-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -24px;
  width: 40px;
  height: 2px;
  background: rgba(10, 108, 255, 0.2);
}

.sslokx-install-step:last-child::after {
  display: none;
}

.sslokx-install-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6cff, #0060e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 18px;
}

.sslokx-install-step h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.sslokx-install-step p {
  font-size: 18px;
  color: #6b7a90;
  margin: 0;
  line-height: 1.6;
}

.sslokx-cta-banner {
  padding: 80px 48px;
  text-align: center;
  background: linear-gradient(160deg, #0a1224 0%, #0d1528 50%, #0a1224 100%);
  position: relative;
  overflow: hidden;
}

.sslokx-cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 108, 255, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.sslokx-cta-content {
  position: relative;
  z-index: 2;
}

.sslokx-cta-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.2px;
}

.sslokx-cta-content p {
  font-size: 20px;
  color: #6b7a90;
  margin: 0 0 36px;
}

.sslokx-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .sslokx-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sslokx-advantages {
    grid-template-columns: 1fr;
  }
  .sslokx-download-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .sslokx-download-platforms {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .sslokx-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sslokx-install-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .sslokx-install-step::after {
    display: none;
  }
  .sslokx-hero-title {
    font-size: 40px;
  }
  .sslokx-navbar {
    padding: 0 24px;
  }
  .sslokx-nav-links {
    gap: 20px;
  }
  .sslokx-hero-stats {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .sslokx-nav-links {
    display: none;
  }
  .sslokx-features-grid {
    grid-template-columns: 1fr;
  }
  .sslokx-hero-title {
    font-size: 32px;
  }
  .sslokx-section {
    padding: 64px 20px;
  }
  .sslokx-section-title {
    font-size: 30px;
  }
  .sslokx-download-title {
    font-size: 30px;
  }
  .sslokx-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .sslokx-security-banner {
    flex-direction: column;
    gap: 24px;
  }
  .sslokx-footer-grid {
    grid-template-columns: 1fr;
  }
  .sslokx-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .sslokx-download-hero h1 {
    font-size: 32px;
  }
}