* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  background: #fff;
}

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700;
  color: #0f1e3d;
  text-decoration: none;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 12px rgba(15,30,61,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nav-links {
  display: flex; gap: 4px; list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none; color: #555;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s ease;
  cursor: pointer;
  display: block;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(135deg, #1e88ff, #6c5ce7);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.nav-links a:hover { color: #1e88ff; background: rgba(30,136,255,0.06); }
.nav-links a:hover::after { width: 24px; }
.nav-links a.active { color: #1e88ff; background: rgba(30,136,255,0.08); }
.nav-links a.active::after { width: 24px; }

/* Mobile menu */
.mobile-toggle {
  display: none;
  width: 36px; height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-toggle:hover { background: rgba(30,136,255,0.08); }
.mobile-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #0f1e3d;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Page wrapper */
.page-wrapper { min-height: 100vh; }

/* Hero Slider */
.hero-slider {
  position: relative;
  background: #0a1428;
}
.hero-slide {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 180px;
  overflow: hidden;
}
.hero-slide-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  width: 100%;
}
.hero-label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}
.hero-slide-inner h1 {
  font-size: 58px; font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-slide-inner h1 .accent {
  background: linear-gradient(135deg, #8ec5fc 0%, #e0c3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-slide-inner .subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 2px;
}
.hero-slide-inner .tags {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.hero-cta {
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(135deg, #1e88ff 0%, #6c5ce7 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(30,136,255,0.3);
  transition: all 0.3s ease;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,136,255,0.4);
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.hero-dot.active {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
  width: 32px;
  border-radius: 5px;
}

/* Section */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: 90px 24px;
}
.section-title {
  text-align: center;
  font-size: 38px; font-weight: 700;
  margin-bottom: 16px;
  color: #0f1e3d;
}
.section-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 60px;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,30,61,0.1);
  border-color: #1e88ff;
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.card-icon.blue { background: rgba(30,136,255,0.1); color: #1e88ff; }
.card-icon.purple { background: rgba(108,92,231,0.1); color: #6c5ce7; }
.card-icon.green { background: rgba(16,185,129,0.1); color: #10b981; }
.card-icon.orange { background: rgba(249,115,22,0.1); color: #f97316; }
.card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
  color: #0f1e3d;
}
.card p {
  color: #6b7280;
  font-size: 14.5px;
  line-height: 1.7;
}
.card ul {
  list-style: none;
  margin-top: 12px;
}
.card ul li {
  color: #4b5563;
  font-size: 14px;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.card ul li::before {
  content: '▸'; color: #1e88ff;
  position: absolute; left: 0;
}

/* About section */
.about-section { background: #f8fafc; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: 36px; margin-bottom: 24px; color: #0f1e3d; line-height: 1.2; }
.about-text p { color: #4b5563; font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.stat {
  background: white; padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #1e88ff;
}
.stat .num {
  font-size: 32px; font-weight: 800; color: #1e88ff;
  display: block;
}
.stat .label { color: #6b7280; font-size: 14px; margin-top: 4px; }

/* Testimonials */
.testi-card {
  background: white; padding: 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  position: relative;
}
.testi-card::before {
  content: '"'; position: absolute;
  top: 10px; left: 24px;
  font-size: 60px; color: #1e88ff;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.2;
}
.testi-text {
  color: #4b5563; font-size: 14.5px;
  line-height: 1.8; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e88ff, #6c5ce7);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
}
.testi-meta strong { color: #0f1e3d; font-size: 15px; display: block; }
.testi-meta span { color: #6b7280; font-size: 13px; }

/* Product page hero */
.product-hero {
  background: linear-gradient(135deg, #0f1e3d 0%, #1a3a6c 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}
.product-hero h1 {
  font-size: 48px; font-weight: 800;
  margin-bottom: 16px;
}
.product-hero p {
  font-size: 18px; opacity: 0.85;
  max-width: 700px; margin: 0 auto;
}

/* Product showcase */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-visual {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-radius: 20px;
  padding: 60px 40px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.camera-svg, .motor-svg { width: 70%; height: 70%; }
.product-content h2 {
  font-size: 32px; color: #0f1e3d;
  margin-bottom: 20px;
  line-height: 1.3;
}
.product-content > p {
  color: #4b5563; font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.8;
}
.feature-list {
  list-style: none; margin-top: 24px;
}
.feature-list li {
  display: flex; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}
.feature-list li:last-child { border-bottom: none; }
.feature-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(30,136,255,0.1);
  color: #1e88ff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.feature-text strong {
  display: block; color: #0f1e3d;
  font-size: 15px; margin-bottom: 2px;
}
.feature-text span { color: #6b7280; font-size: 14px; }

/* Spec table */
.spec-section {
  background: #f8fafc;
  padding: 90px 24px;
}
.spec-table {
  max-width: 1000px; margin: 0 auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid #f1f5f9;
}
.spec-row:last-child { border-bottom: none; }
.spec-row > div {
  padding: 18px 28px;
  font-size: 15px;
}
.spec-row > div:first-child {
  background: #fafbff;
  color: #6b7280;
  font-weight: 500;
}
.spec-row > div:last-child {
  color: #0f1e3d;
  font-weight: 500;
}

/* Application scenarios */
.scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.scenario {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}
.scenario:hover {
  border-color: #1e88ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(30,136,255,0.08);
}
.scenario-icon {
  font-size: 36px; margin-bottom: 12px;
}
.scenario h4 {
  font-size: 16px; color: #0f1e3d;
  margin-bottom: 6px;
}
.scenario p {
  font-size: 13px; color: #6b7280;
  line-height: 1.5;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #1e88ff 0%, #6c5ce7 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}
.cta-section h2 {
  font-size: 36px; margin-bottom: 16px;
  font-weight: 700;
}
.cta-section p {
  font-size: 17px; opacity: 0.9;
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-block;
  background: white; color: #1e88ff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

/* Footer */
footer {
  background: #0a1428;
  color: rgba(255,255,255,0.7);
  padding: 50px 24px 30px;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-size: 22px; color: white;
  font-weight: 700; margin-bottom: 12px;
}
.footer-info { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Series cards for motor */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.series-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}
.series-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.series-img {
  height: 180px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  display: flex; align-items: center; justify-content: center;
}
.series-img svg { width: 60%; height: 60%; }
.series-body { padding: 24px; }
.series-tag {
  display: inline-block;
  background: rgba(30,136,255,0.1);
  color: #1e88ff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 600;
}
.series-body h3 {
  font-size: 18px; color: #0f1e3d;
  margin-bottom: 8px;
}
.series-body p {
  color: #6b7280; font-size: 14px;
  line-height: 1.6;
}

/* Contact form section */
.contact-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  padding: 90px 24px;
}
.contact-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,30,61,0.08);
}
.contact-info {
  background: linear-gradient(135deg, #0f1e3d 0%, #1a3a6c 60%, #2c5fa8 100%);
  color: white;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(108,92,231,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h2 {
  font-size: 28px; font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.contact-info > p {
  font-size: 15px; opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-item {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-item-text strong {
  display: block; font-size: 13px;
  opacity: 0.7; font-weight: 500;
  margin-bottom: 2px;
}
.contact-item-text span {
  display: block; font-size: 15px;
  font-weight: 500;
}
.contact-form {
  padding: 48px 40px;
}
.contact-form h3 {
  font-size: 22px;
  color: #0f1e3d;
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-form .form-sub {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group label .req {
  color: #ef4444; margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14.5px;
  font-family: inherit;
  color: #0f1e3d;
  background: #fafbff;
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1e88ff;
  background: white;
  box-shadow: 0 0 0 3px rgba(30,136,255,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1e88ff 0%, #6c5ce7 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(30,136,255,0.3);
}
.form-submit:disabled {
  opacity: 0.6; cursor: not-allowed;
  transform: none;
}
.form-note {
  text-align: center;
  font-size: 12.5px;
  color: #9ca3af;
  margin-top: 14px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: #0f1e3d;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 500;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  white-space: nowrap;
  max-width: 90vw;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.toast.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-inner { padding: 14px 16px; }
  .logo { font-size: 16px; }
  .logo-mark { width: 32px; height: 32px; }
  .hero-slide { padding: 80px 20px 130px; }
  .hero-slide-inner { padding: 0 20px; }
  .hero-slide-inner h1 { font-size: 32px; letter-spacing: -1px; margin-bottom: 14px; }
  .hero-slide-inner .subtitle { font-size: 16px; margin-bottom: 10px; }
  .hero-slide-inner .tags { font-size: 13px; margin-bottom: 32px; letter-spacing: 1px; }
  .hero-label { font-size: 11px; padding: 6px 14px; margin-bottom: 16px; letter-spacing: 1px; }
  .hero-cta { padding: 12px 28px; font-size: 14px; }
  .hero-dots { bottom: 40px; gap: 8px; }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.active { width: 24px; border-radius: 4px; }
  .section { padding: 60px 20px; }
  .section-title { font-size: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-showcase { grid-template-columns: 1fr; gap: 40px; }
  .product-hero h1 { font-size: 32px; }
  .cta-section h2 { font-size: 28px; }
  .spec-row { grid-template-columns: 1fr; }
  .spec-row > div { padding: 12px 20px; }
  .contact-section { padding: 50px 16px; }
  .contact-wrap { grid-template-columns: 1fr; border-radius: 16px; }
  .contact-info { padding: 32px 24px; }
  .contact-info h2 { font-size: 22px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .side-cta { right: 12px; bottom: 20px; width: 48px; height: 48px; }
  .side-cta svg { width: 20px; height: 20px; }
}

/* Side CTA - floating chat button */
.side-cta {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e88ff 0%, #6c5ce7 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(30,136,255,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.side-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(30,136,255,0.5);
}
.side-cta svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.side-cta-label {
  position: fixed;
  right: 88px;
  bottom: 40px;
  background: #0f1e3d;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 9997;
}
.side-cta-label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0f1e3d;
}
.side-cta:hover + .side-cta-label,
.side-cta-label:hover {
  opacity: 1;
  transform: translateX(0);
}
