body.platform-style-template-five {
  --bg-deep: #0b1b3d;
  --bg-mid: #1a2f5a;
  --accent-orange: #ff6b35;
  --accent-orange-hover: #e85a2a;
  --tech-cyan: #00e5ff;
  --success-green: #2ed573;
  --white: #ffffff;
  --text-primary: #e8ecf1;
  --text-secondary: #b0b8c5;
  --card-bg: rgba(26, 47, 90, 0.6);
  --card-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.45);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1280px;
  --header-height: 72px;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: "Space Grotesk", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.platform-style-template-five .site-shell {
  width: 100%;
  overflow-x: hidden;
}

body.platform-style-template-five .site-main {
  display: block;
}

body.platform-style-template-five a {
  color: inherit;
}

body.platform-style-template-five .site-header.site-header--template-five {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(11, 27, 61, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.platform-style-template-five .site-header--template-five .header-inner {
  width: 100%;
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.platform-style-template-five .site-nav--template-five {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

body.platform-style-template-five .logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1001;
}

body.platform-style-template-five .logo-icon,
body.platform-style-template-five .logo-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

body.platform-style-template-five .logo-text {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

body.platform-style-template-five .desktop-nav.desktop-nav--template-five {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

body.platform-style-template-five .desktop-nav.desktop-nav--template-five::-webkit-scrollbar {
  display: none;
}

body.platform-style-template-five .desktop-nav.desktop-nav--template-five a {
  display: block;
  padding: 8px 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

body.platform-style-template-five .desktop-nav.desktop-nav--template-five a:hover,
body.platform-style-template-five .desktop-nav.desktop-nav--template-five a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

body.platform-style-template-five .site-header--template-five .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 1001;
}

body.platform-style-template-five .btn-outline-sm,
body.platform-style-template-five .btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

body.platform-style-template-five .btn-outline-sm {
  padding: 9px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

body.platform-style-template-five .btn-outline-sm:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

body.platform-style-template-five .btn-primary-sm {
  padding: 10px 20px;
  background: var(--accent-orange);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

body.platform-style-template-five .btn-primary-sm:hover {
  background: var(--accent-orange-hover);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
  transform: translateY(-1px);
}

body.platform-style-template-five .mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

body.platform-style-template-five .mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s ease;
}

body.platform-style-template-five .mobile-nav-overlay {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 27, 61, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  padding: 24px 32px;
  flex-direction: column;
  gap: 8px;
}

body.platform-style-template-five .mobile-nav-overlay a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: var(--radius-md);
}

body.platform-style-template-five .mobile-nav-overlay a:hover {
  background: rgba(255, 255, 255, 0.06);
}

body.platform-style-template-five .mobile-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile-menu-toggle:checked ~ .site-shell .mobile-nav-overlay {
  display: flex;
}

#mobile-menu-toggle:checked ~ .site-shell .mobile-menu-btn span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

#mobile-menu-toggle:checked ~ .site-shell .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}

#mobile-menu-toggle:checked ~ .site-shell .mobile-menu-btn span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

body.platform-style-template-five .hero-section,
body.platform-style-template-five .section-block,
body.platform-style-template-five .server-map-section,
body.platform-style-template-five .security-section,
body.platform-style-template-five .testimonials-section,
body.platform-style-template-five .faq-section {
  padding-left: 32px;
  padding-right: 32px;
}

body.platform-style-template-five .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(160deg, #0b1b3d 0%, #132544 30%, #1a2f5a 60%, #0d1f3c 100%);
  overflow: hidden;
}

body.platform-style-template-five .hero-bg-particles,
body.platform-style-template-five .hero-topology-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.platform-style-template-five .hero-bg-particles .particle {
  position: absolute;
  border-radius: 50%;
  background: var(--tech-cyan);
  opacity: 0.25;
  animation: t5-particle-float 8s ease-in-out infinite;
}

body.platform-style-template-five .hero-bg-particles .particle:nth-child(1) { width: 4px; height: 4px; top: 20%; left: 10%; }
body.platform-style-template-five .hero-bg-particles .particle:nth-child(2) { width: 3px; height: 3px; top: 60%; left: 80%; animation-delay: 1.5s; }
body.platform-style-template-five .hero-bg-particles .particle:nth-child(3) { width: 5px; height: 5px; top: 35%; left: 45%; animation-delay: 3s; }
body.platform-style-template-five .hero-bg-particles .particle:nth-child(4) { width: 3px; height: 3px; top: 75%; left: 25%; animation-delay: 2s; }
body.platform-style-template-five .hero-bg-particles .particle:nth-child(5) { width: 4px; height: 4px; top: 15%; left: 65%; animation-delay: 4s; }
body.platform-style-template-five .hero-bg-particles .particle:nth-child(6) { width: 2px; height: 2px; top: 50%; left: 55%; animation-delay: 0.8s; }

body.platform-style-template-five .hero-topology-lines {
  opacity: 0.12;
  background:
    radial-gradient(circle at 30% 25%, rgba(0, 229, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 229, 255, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 40%);
}

body.platform-style-template-five .hero-inner,
body.platform-style-template-five .server-map-inner,
body.platform-style-template-five .security-inner,
body.platform-style-template-five .footer-inner,
body.platform-style-template-five .footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
}

body.platform-style-template-five .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.platform-style-template-five .hero-badge,
body.platform-style-template-five .security-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

body.platform-style-template-five .hero-badge {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--tech-cyan);
  margin-bottom: 20px;
}

body.platform-style-template-five .hero-headline,
body.platform-style-template-five .section-title,
body.platform-style-template-five .security-text h2 {
  color: var(--white);
  letter-spacing: -0.03em;
}

body.platform-style-template-five .hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

body.platform-style-template-five .hero-headline .highlight {
  color: var(--accent-orange);
}

body.platform-style-template-five .hero-subheadline,
body.platform-style-template-five .section-subtitle,
body.platform-style-template-five .security-text p,
body.platform-style-template-five .faq-answer,
body.platform-style-template-five .footer-col p,
body.platform-style-template-five .footer-bottom {
  color: var(--text-secondary);
}

body.platform-style-template-five .hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 32px;
  max-width: 560px;
}

body.platform-style-template-five .hero-value-props,
body.platform-style-template-five .hero-cta-group,
body.platform-style-template-five .hero-stats-bar,
body.platform-style-template-five .security-icons-row,
body.platform-style-template-five .download-pills {
  display: flex;
  flex-wrap: wrap;
}

body.platform-style-template-five .hero-value-props {
  gap: 20px;
  margin-bottom: 36px;
}

body.platform-style-template-five .hero-value-prop {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

body.platform-style-template-five .prop-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

body.platform-style-template-five .hero-cta-group {
  gap: 16px;
  align-items: center;
}

body.platform-style-template-five .btn-hero-primary,
body.platform-style-template-five .btn-hero-secondary,
body.platform-style-template-five .download-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

body.platform-style-template-five .btn-hero-primary {
  gap: 8px;
  padding: 16px 36px;
  background: var(--accent-orange);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

body.platform-style-template-five .btn-hero-primary:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
}

body.platform-style-template-five .btn-hero-secondary {
  gap: 8px;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

body.platform-style-template-five .btn-hero-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

body.platform-style-template-five .hero-stats-bar {
  gap: 32px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.platform-style-template-five .hero-stat-number,
body.platform-style-template-five .map-stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tech-cyan);
}

body.platform-style-template-five .hero-stat-label,
body.platform-style-template-five .map-stat-label {
  font-size: 0.82rem;
}

body.platform-style-template-five .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  animation: t5-hero-float 4s ease-in-out infinite;
}

body.platform-style-template-five .hero-duck-wrapper {
  width: 280px;
  height: 280px;
}

body.platform-style-template-five .hero-duck-wrapper svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 229, 255, 0.25));
}

body.platform-style-template-five .hero-speed-lines {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

body.platform-style-template-five .speed-line {
  height: 2px;
  background: var(--tech-cyan);
  border-radius: 2px;
  opacity: 0.6;
  animation: t5-speed-line 1.5s ease-in-out infinite;
}

body.platform-style-template-five .speed-line:nth-child(1) { width: 100%; }
body.platform-style-template-five .speed-line:nth-child(2) { width: 70%; animation-delay: 0.3s; }
body.platform-style-template-five .speed-line:nth-child(3) { width: 85%; animation-delay: 0.6s; }

body.platform-style-template-five .section-block,
body.platform-style-template-five .testimonials-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

body.platform-style-template-five .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}

body.platform-style-template-five .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

body.platform-style-template-five .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.platform-style-template-five .feature-card,
body.platform-style-template-five .testimonial-card,
body.platform-style-template-five .faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
}

body.platform-style-template-five .feature-card {
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.platform-style-template-five .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tech-cyan), var(--accent-orange));
  opacity: 0;
  transition: opacity 0.35s ease;
}

body.platform-style-template-five .feature-card:hover,
body.platform-style-template-five .testimonial-card:hover,
body.platform-style-template-five .faq-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

body.platform-style-template-five .feature-card:hover::before {
  opacity: 1;
}

body.platform-style-template-five .feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

body.platform-style-template-five .feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--tech-cyan);
}

body.platform-style-template-five .feature-card h3,
body.platform-style-template-five .testimonial-name,
body.platform-style-template-five .footer-col h4 {
  color: var(--white);
}

body.platform-style-template-five .feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

body.platform-style-template-five .feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

body.platform-style-template-five .server-map-section,
body.platform-style-template-five .security-section,
body.platform-style-template-five .faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

body.platform-style-template-five .server-map-section {
  background: linear-gradient(180deg, #0b1b3d 0%, #0f2247 50%, #0b1b3d 100%);
}

body.platform-style-template-five .map-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.platform-style-template-five .map-placeholder {
  position: relative;
  width: 90%;
  height: 70%;
}

body.platform-style-template-five .map-placeholder svg {
  width: 100%;
  height: 100%;
}

body.platform-style-template-five .map-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--tech-cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.7);
  animation: t5-node-pulse 2.5s ease-in-out infinite;
}

body.platform-style-template-five .map-node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  animation: t5-node-ring 2.5s ease-in-out infinite;
}

body.platform-style-template-five .map-node.n1 { top: 30%; left: 22%; }
body.platform-style-template-five .map-node.n2 { top: 25%; left: 48%; animation-delay: 0.6s; }
body.platform-style-template-five .map-node.n3 { top: 40%; left: 75%; animation-delay: 1.2s; }
body.platform-style-template-five .map-node.n4 { top: 55%; left: 35%; animation-delay: 0.3s; }
body.platform-style-template-five .map-node.n5 { top: 50%; left: 60%; animation-delay: 1s; }
body.platform-style-template-five .map-node.n6 { top: 35%; left: 85%; animation-delay: 1.6s; }
body.platform-style-template-five .map-node.n7 { top: 60%; left: 18%; animation-delay: 0.8s; }
body.platform-style-template-five .map-node.n8 { top: 20%; left: 55%; animation-delay: 1.4s; }

body.platform-style-template-five .map-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
  text-align: center;
}

body.platform-style-template-five .security-section {
  background: #0d1f3c;
}

body.platform-style-template-five .security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.platform-style-template-five .security-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

body.platform-style-template-five .security-icons-row {
  gap: 16px;
  margin-top: 20px;
}

body.platform-style-template-five .security-badge {
  gap: 8px;
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.3);
  color: var(--success-green);
}

body.platform-style-template-five .download-pills {
  gap: 12px;
  margin-top: 28px;
}

body.platform-style-template-five .kuaiya-device-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 8px 32px 20px;
}

body.platform-style-template-five .kuaiya-device-strip .download-pills {
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

body.platform-style-template-five .kuaiya-pricing {
  padding: 16px 32px 80px;
}

body.platform-style-template-five .kuaiya-pricing .server-map-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

body.platform-style-template-five .kuaiya-pricing .section-subtitle {
  margin-bottom: 40px;
}

body.platform-style-template-five .kuaiya-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 284px;
  padding: 30px 28px 26px;
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0) 38%),
    linear-gradient(155deg, #14274e 0%, #123a60 52%, #0b1c3e 100%);
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  color: var(--text-primary);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: none;
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card:hover {
  border-color: rgba(0, 229, 255, 0.34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card strong {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.2;
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-label {
  padding: 10px 16px;
  background: rgba(0, 229, 255, 0.1);
  color: #8ff6ff;
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.16);
}

body.platform-style-template-five .kuaiya-pricing-grid .kuaiya-price {
  color: #00e5ff;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.18);
}

body.platform-style-template-five .kuaiya-pricing-grid .kuaiya-price small {
  color: #a8bfd9;
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card p {
  margin: 0 0 24px;
  color: #b7c8dd;
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card .secondary-button {
  width: 100%;
  margin-top: auto;
  border-color: rgba(0, 229, 255, 0.22);
  background: rgba(11, 28, 62, 0.72);
  color: #00e5ff;
  box-shadow: none;
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card .secondary-button:hover {
  background: rgba(18, 58, 96, 0.92);
  border-color: rgba(0, 229, 255, 0.42);
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card.featured {
  background:
    radial-gradient(circle at top center, rgba(0, 229, 255, 0.22) 0%, rgba(0, 229, 255, 0) 46%),
    linear-gradient(155deg, #123a60 0%, #14274e 55%, #0b1c3e 100%);
  border-color: rgba(0, 229, 255, 0.34);
  box-shadow:
    0 22px 50px rgba(3, 12, 32, 0.42),
    0 0 0 1px rgba(0, 229, 255, 0.08);
  color: var(--text-primary);
  transform: translateY(-4px);
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card.featured strong {
  color: var(--white);
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card.featured .pricing-label {
  background: rgba(0, 229, 255, 0.14);
  color: #00e5ff;
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.2);
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card.featured .kuaiya-price small,
body.platform-style-template-five .kuaiya-pricing-grid .pricing-card.featured p {
  color: #c2d3e5;
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card.featured .secondary-button {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
}

body.platform-style-template-five .kuaiya-pricing-grid .pricing-card.featured .secondary-button:hover {
  background: rgba(0, 229, 255, 0.14);
}

body.platform-style-template-five .download-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.9rem;
}

body.platform-style-template-five .download-pill:hover {
  border-color: rgba(0, 229, 255, 0.45);
  background: rgba(0, 229, 255, 0.08);
}

body.platform-style-template-five .security-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.platform-style-template-five .security-shield {
  width: 200px;
  height: 240px;
}

body.platform-style-template-five .security-shield svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 16px 40px rgba(46, 213, 115, 0.25));
}

body.platform-style-template-five .testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
}

body.platform-style-template-five .testimonial-card {
  flex: 0 0 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.platform-style-template-five .testimonial-stars {
  color: #ffb800;
  font-size: 1rem;
  letter-spacing: 2px;
}

body.platform-style-template-five .testimonial-text {
  color: var(--text-primary);
  font-size: 0.95rem;
}

body.platform-style-template-five .testimonial-text p {
  margin: 0;
}

body.platform-style-template-five .testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

body.platform-style-template-five .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tech-cyan), var(--accent-orange));
  flex-shrink: 0;
}

body.platform-style-template-five .testimonial-role {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

body.platform-style-template-five .media-logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.5;
}

body.platform-style-template-five .media-logo-placeholder {
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.04em;
}

body.platform-style-template-five .faq-section {
  max-width: 800px;
  margin: 0 auto;
}

body.platform-style-template-five .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.platform-style-template-five .faq-item {
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.platform-style-template-five .faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.platform-style-template-five .faq-item summary::-webkit-details-marker {
  display: none;
}

body.platform-style-template-five .faq-item summary::after {
  content: "▾";
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: transform 0.35s ease;
}

body.platform-style-template-five .faq-item[open] summary::after {
  transform: rotate(180deg);
  color: #00e5ff;
}

body.platform-style-template-five .faq-item[open] summary {
  color: #00e5ff;
}

body.platform-style-template-five .faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
}

body.platform-style-template-five .faq-answer p:first-child {
  margin-top: 0;
}

body.platform-style-template-five .article-hero--template-five {
  padding: 136px 32px 48px;
  background: linear-gradient(160deg, #0b1b3d 0%, #132544 30%, #1a2f5a 60%, #0d1f3c 100%);
}

body.platform-style-template-five .article-hero__inner {
  max-width: 920px;
  margin: 0 auto;
}

body.platform-style-template-five .article-hero--template-five h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16;
  color: var(--white);
  margin: 18px 0 14px;
}

body.platform-style-template-five .article-hero--template-five p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin: 0 0 18px;
  max-width: 760px;
}

body.platform-style-template-five .download-page-hero--template-five .container,
body.platform-style-template-five .download-faq-container--template-five {
  max-width: 920px;
  margin: 0 auto;
}

body.platform-style-template-five .download-page-actions--template-five {
  gap: 14px;
}

body.platform-style-template-five .download-content-section--template-five,
body.platform-style-template-five .download-faq-section--template-five {
  background: var(--bg-deep);
}

body.platform-style-template-five .download-grid--template-five {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

body.platform-style-template-five .download-card--template-five {
  padding: 26px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

body.platform-style-template-five .download-card--template-five h2 {
  color: var(--white);
}

body.platform-style-template-five .download-card--template-five p {
  color: var(--text-secondary);
}

body.platform-style-template-five .download-card--template-five .download-label {
  background: rgba(0, 229, 255, 0.1);
  color: var(--tech-cyan);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.14);
}

body.platform-style-template-five .download-card--template-five .secondary-button,
body.platform-style-template-five .download-action-button--template-five {
  width: 100%;
  justify-content: center;
}

body.platform-style-template-five .download-action-button--template-five {
  box-shadow: none;
}

body.platform-style-template-five .download-intro-card--template-five {
  margin-bottom: 8px;
}

body.platform-style-template-five .faq-page-hero--template-five .container {
  max-width: 920px;
  margin: 0 auto;
}

body.platform-style-template-five .faq-page-actions--template-five {
  gap: 14px;
}

body.platform-style-template-five .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

body.platform-style-template-five .meta-row a,
body.platform-style-template-five .article-card__meta a,
body.platform-style-template-five .text-link {
  color: var(--tech-cyan);
  text-decoration: none;
}

body.platform-style-template-five .meta-row a:hover,
body.platform-style-template-five .article-card__meta a:hover,
body.platform-style-template-five .text-link:hover {
  color: var(--white);
}

body.platform-style-template-five .article-content-section--template-five,
body.platform-style-template-five .article-listing-section--template-five,
body.platform-style-template-five .related-section--template-five {
  background: var(--bg-deep);
}

body.platform-style-template-five .faq-content-section--template-five,
body.platform-style-template-five .faq-related-section--template-five,
body.platform-style-template-five .faq-articles-section--template-five {
  background: var(--bg-deep);
}

body.platform-style-template-five .article-layout--template-five {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 28px;
}

body.platform-style-template-five .legal-page-hero--template-five {
  padding-bottom: 28px;
}

body.platform-style-template-five .legal-page-hero--template-five .article-hero__inner,
body.platform-style-template-five .legal-layout--template-five {
  max-width: 900px;
  margin: 0 auto;
}

body.platform-style-template-five .legal-content-section--template-five {
  padding: 0 32px 80px;
}

body.platform-style-template-five .legal-page-body--template-five {
  padding: 40px 42px;
}

body.platform-style-template-five .faq-layout--template-five {
  align-items: start;
}

body.platform-style-template-five .article-body--template-five,
body.platform-style-template-five .sidebar-card--template-five,
body.platform-style-template-five .article-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

body.platform-style-template-five .article-body--template-five {
  padding: 32px;
  color: var(--text-primary);
}

body.platform-style-template-five .article-body--template-five > *:first-child {
  margin-top: 0;
}

body.platform-style-template-five .article-body--template-five h2,
body.platform-style-template-five .article-body--template-five h3,
body.platform-style-template-five .article-body--template-five h4,
body.platform-style-template-five .section-heading h2,
body.platform-style-template-five .sidebar-card h2,
body.platform-style-template-five .article-card h3 a {
  color: var(--white);
}

body.platform-style-template-five .article-body--template-five p,
body.platform-style-template-five .article-body--template-five li,
body.platform-style-template-five .sidebar-card--template-five p,
body.platform-style-template-five .article-card p {
  color: var(--text-secondary);
}

body.platform-style-template-five .faq-preview--template-five {
  display: grid;
  gap: 16px;
}

body.platform-style-template-five .seo-intro--template-five {
  margin-bottom: 4px;
}

body.platform-style-template-five .article-body--template-five a {
  color: var(--tech-cyan);
}

body.platform-style-template-five .article-body--template-five blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent-orange);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

body.platform-style-template-five .article-body--template-five ul,
body.platform-style-template-five .article-body--template-five ol {
  padding-left: 22px;
}

body.platform-style-template-five .article-body--template-five pre {
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
}

body.platform-style-template-five .article-body--template-five code {
  font-family: "Fira Code", Consolas, monospace;
}

body.platform-style-template-five .article-sidebar--template-five {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.platform-style-template-five .faq-sidebar--template-five {
  position: sticky;
  top: 110px;
}

body.platform-style-template-five .sidebar-card--template-five {
  padding: 24px;
}

body.platform-style-template-five .download-stack--template-five {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.platform-style-template-five .sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

body.platform-style-template-five .section-heading--stacked {
  margin-bottom: 24px;
}

body.platform-style-template-five .section-heading--stacked .eyebrow,
body.platform-style-template-five .article-listing-section--template-five .eyebrow,
body.platform-style-template-five .article-hero--category .eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--tech-cyan);
  border: 1px solid rgba(0, 229, 255, 0.24);
  box-shadow: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.platform-style-template-five .article-grid--template-five {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.platform-style-template-five .faq-category-grid--template-five,
body.platform-style-template-five .faq-article-grid--template-five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.platform-style-template-five .article-card {
  padding: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.platform-style-template-five .article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.84rem;
}

body.platform-style-template-five .article-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.35;
}

body.platform-style-template-five .article-card p {
  margin-bottom: 16px;
}

body.platform-style-template-five .article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

body.platform-style-template-five .article-listing-section--template-five .section-heading {
  margin-bottom: 28px;
}

body.platform-style-template-five .article-pagination {
  margin-top: 36px;
}

body.platform-style-template-five .article-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 4px 8px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

body.platform-style-template-five .article-pagination .page-numbers:hover,
body.platform-style-template-five .article-pagination .page-numbers:focus-visible {
  color: var(--white);
  border-color: rgba(0, 229, 255, 0.45);
}

body.platform-style-template-five .article-pagination .page-numbers.current {
  color: var(--bg-deep);
  background: var(--tech-cyan);
  border-color: var(--tech-cyan);
}

body.platform-style-template-five .article-pagination .page-numbers.dots {
  border-color: transparent;
  min-width: auto;
  padding: 0 6px;
}

body.platform-style-template-five .site-footer {
  background: #080e1a;
  padding: 60px 32px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.platform-style-template-five .footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

body.platform-style-template-five .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.platform-style-template-five .footer-col li {
  margin-bottom: 8px;
}

body.platform-style-template-five .footer-col a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

body.platform-style-template-five .footer-col a:hover,
body.platform-style-template-five .footer-social-icons a:hover {
  color: var(--white);
}

body.platform-style-template-five .footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

body.platform-style-template-five .footer-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

body.platform-style-template-five .footer-social-icons a {
  text-decoration: none;
  color: var(--text-secondary);
}

body.platform-style-template-five .faq-page-hero--template-five .eyebrow,
body.platform-style-template-five .faq-sidebar--template-five .eyebrow,
body.platform-style-template-five .faq-related-section--template-five .section-heading .eyebrow,
body.platform-style-template-five .faq-articles-section--template-five .section-heading .eyebrow {
  background: rgba(0, 229, 255, 0.1);
  color: var(--tech-cyan);
  border: 1px solid rgba(0, 229, 255, 0.24);
  box-shadow: none;
}

body.platform-style-template-five .faq-page-actions--template-five .primary-button {
  background: linear-gradient(135deg, var(--accent-orange), #ff8f62);
  box-shadow: 0 16px 36px rgba(255, 107, 53, 0.28);
}

body.platform-style-template-five .faq-page-actions--template-five .ghost-button,
body.platform-style-template-five .faq-sidebar--template-five .secondary-button {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

body.platform-style-template-five .faq-page-actions--template-five .ghost-button:hover,
body.platform-style-template-five .faq-sidebar--template-five .secondary-button:hover {
  background: rgba(0, 229, 255, 0.08);
  color: var(--tech-cyan);
  border-color: rgba(0, 229, 255, 0.42);
}

body.platform-style-template-five .kuaiya-bottom-cta {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top center, rgba(0, 229, 255, 0.16) 0%, rgba(0, 229, 255, 0) 52%),
    linear-gradient(160deg, #123a60 0%, #14274e 55%, #0b1c3e 100%);
  border: 1px solid rgba(0, 229, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

body.platform-style-template-five .kuaiya-bottom-cta .btn-hero-primary {
  box-shadow: none;
}

body.platform-style-template-five .kuaiya-bottom-cta .btn-hero-secondary {
  border-color: rgba(255, 255, 255, 0.24);
}

body.platform-style-template-five .faq-related-section--template-five {
  background: linear-gradient(180deg, #10234a 0%, #0b1b3d 100%);
}

body.platform-style-template-five .faq-category-grid--template-five .feature-icon {
  background: rgba(0, 229, 255, 0.1);
  color: var(--tech-cyan);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.14);
}

body.platform-style-template-five .faq-preview--template-five .empty-state,
body.platform-style-template-five .faq-category-grid--template-five + .empty-state,
body.platform-style-template-five .faq-article-grid--template-five + .empty-state {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
}

@keyframes t5-particle-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.25; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.6; }
  50% { transform: translateY(-15px) translateX(-10px); opacity: 0.35; }
  75% { transform: translateY(-40px) translateX(8px); opacity: 0.55; }
}

@keyframes t5-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes t5-speed-line {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 0.9; transform: translateX(-20px); }
}

@keyframes t5-node-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.8); opacity: 0.5; }
}

@keyframes t5-node-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(2.2); opacity: 0; }
}

@media (max-width: 1024px) {
  body.platform-style-template-five .site-header--template-five .header-inner {
    padding-left: 24px;
    padding-right: 24px;
    gap: 16px;
  }

  body.platform-style-template-five .desktop-nav.desktop-nav--template-five a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.9rem;
  }

  body.platform-style-template-five .hero-inner,
  body.platform-style-template-five .security-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  body.platform-style-template-five .hero-value-props,
  body.platform-style-template-five .hero-cta-group,
  body.platform-style-template-five .hero-stats-bar,
  body.platform-style-template-five .security-icons-row,
  body.platform-style-template-five .download-pills {
    justify-content: center;
  }

  body.platform-style-template-five .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.platform-style-template-five .kuaiya-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.platform-style-template-five .download-grid--template-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.platform-style-template-five .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body.platform-style-template-five .desktop-nav,
  body.platform-style-template-five .header-actions .btn-outline-sm,
  body.platform-style-template-five .header-actions .btn-primary-sm {
    display: none;
  }

  body.platform-style-template-five .mobile-menu-btn {
    display: flex;
  }

  body.platform-style-template-five .header-inner,
  body.platform-style-template-five .hero-section,
  body.platform-style-template-five .section-block,
  body.platform-style-template-five .kuaiya-device-strip,
  body.platform-style-template-five .kuaiya-pricing,
  body.platform-style-template-five .server-map-section,
  body.platform-style-template-five .security-section,
  body.platform-style-template-five .testimonials-section,
  body.platform-style-template-five .faq-section,
  body.platform-style-template-five .site-footer,
  body.platform-style-template-five .legal-content-section--template-five {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.platform-style-template-five .hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }

  body.platform-style-template-five .article-hero--template-five {
    padding: 112px 16px 36px;
  }

  body.platform-style-template-five .hero-duck-wrapper {
    width: 160px;
    height: 160px;
  }

  body.platform-style-template-five .features-grid {
    grid-template-columns: 1fr;
  }

  body.platform-style-template-five .kuaiya-pricing-grid {
    grid-template-columns: 1fr;
  }

  body.platform-style-template-five .download-grid--template-five {
    grid-template-columns: 1fr;
  }

  body.platform-style-template-five .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  body.platform-style-template-five .btn-hero-primary,
  body.platform-style-template-five .btn-hero-secondary {
    width: 100%;
  }

  body.platform-style-template-five .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.platform-style-template-five .article-layout--template-five,
  body.platform-style-template-five .article-grid--template-five {
    grid-template-columns: 1fr;
  }

  body.platform-style-template-five .faq-sidebar--template-five {
    position: static;
  }

  body.platform-style-template-five .article-body--template-five {
    padding: 22px 18px;
  }

  body.platform-style-template-five .legal-page-body--template-five {
    padding: 28px 20px;
  }
}

@media (max-width: 720px) {
  body.platform-style-template-five .header-inner {
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  body.platform-style-template-five .header-actions {
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
    gap: 10px;
  }

  body.platform-style-template-five .logo-text {
    font-size: 1.15rem;
  }
}
