/* 全局变量 */
:root {
  --primary: #00f3ff;
  --secondary: #ff00c8;
  --accent: #00ff9d;
  --dark: #0a0a1a;
  --darker: #050510;
  --light: #e0e0ff;
  --gray: #2a2a4a;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* 高科技背景 */
.tech-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(1px);
}

.particle:nth-child(1) {
  width: 5px;
  height: 5px;
  top: 20%;
  left: 10%;
  animation: float 15s infinite ease-in-out;
}

.particle:nth-child(2) {
  width: 8px;
  height: 8px;
  top: 60%;
  left: 80%;
  animation: float 12s infinite ease-in-out reverse;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 30%;
  left: 70%;
  animation: float 18s infinite ease-in-out;
}

.particle:nth-child(4) {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 20%;
  animation: float 10s infinite ease-in-out reverse;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 40%;
  left: 40%;
  animation: float 14s infinite ease-in-out;
}

.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  top: 70%;
  left: 60%;
  animation: float 16s infinite ease-in-out reverse;
}

.particle:nth-child(7) {
  width: 5px;
  height: 5px;
  top: 10%;
  left: 90%;
  animation: float 13s infinite ease-in-out;
}

.particle:nth-child(8) {
  width: 9px;
  height: 9px;
  top: 50%;
  left: 30%;
  animation: float 11s infinite ease-in-out reverse;
}

.particle:nth-child(9) {
  width: 6px;
  height: 6px;
  top: 90%;
  left: 50%;
  animation: float 17s infinite ease-in-out;
}

.particle:nth-child(10) {
  width: 4px;
  height: 4px;
  top: 25%;
  left: 15%;
  animation: float 19s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, 20px);
    opacity: 0.8;
  }
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: scan 5s linear infinite;
  filter: blur(1px);
}

@keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

/* 额外的装饰性动态元素 */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  border: 1px solid var(--primary);
  opacity: 0.3;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.floating-element.circle {
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary), transparent);
}

.floating-element.square {
  transform-origin: center;
  animation-name: rotateSquare;
}

.floating-element.triangle {
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 30px solid var(--primary);
}

@keyframes rotateSquare {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.floating-element:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 15%;
  animation-name: floatElement1;
  animation-duration: 15s;
}

@keyframes floatElement1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(50px, 100px) rotate(90deg); }
  50% { transform: translate(100px, 50px) rotate(180deg); }
  75% { transform: translate(50px, -50px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

.floating-element:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 80%;
  animation-name: floatElement2;
  animation-duration: 18s;
}

@keyframes floatElement2 {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-70px, -30px) scale(1.5); }
  50% { transform: translate(-100px, 20px) scale(0.8); }
  75% { transform: translate(-30px, 60px) scale(1.2); }
  100% { transform: translate(0, 0) scale(1); }
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 40%;
  left: 70%;
  animation-name: floatElement3;
  animation-duration: 22s;
}

@keyframes floatElement3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(80px, 50px) rotate(72deg); }
  40% { transform: translate(30px, 100px) rotate(144deg); }
  60% { transform: translate(-50px, 80px) rotate(216deg); }
  80% { transform: translate(-30px, 20px) rotate(288deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

.floating-element:nth-child(4) {
  top: 70%;
  left: 20%;
  animation-name: floatElement4;
  animation-duration: 25s;
}

@keyframes floatElement4 {
  0% { transform: translate(0, 0); }
  16% { transform: translate(100px, -50px); }
  32% { transform: translate(150px, 20px); }
  48% { transform: translate(80px, 90px); }
  64% { transform: translate(-20px, 100px); }
  80% { transform: translate(-80px, 40px); }
  100% { transform: translate(0, 0); }
}

/* 容器 */
.container {
  position: relative;
  box-sizing: border-box;
  z-index: 1;
}

.card-content {
  max-width: 1400px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* 头部 */
.cyber-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  position: sticky;
  top: 0;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cyber-logo {
  position: relative;
  width: 60px;
  height: 60px;
}

.logo-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
  animation: pulse 2s infinite;
}

.logo-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  animation: rotate 8s linear infinite;
}

.logo-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: wave 1.5s infinite alternate;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes wave {
  0% { width: 10px; }
  100% { width: 30px; }
}

.company-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-title span {
  font-size: 14px;
  font-weight: 400;
}

.cyber-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  position: relative;
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* 主体内容 */
main {
  margin-top: 20px;
}

/* 英雄区域 */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 100px 0;
  min-height: 80vh;
}

.hero-content {
  position: relative;
}
.hero-content h1 {
  margin-bottom: 50px;
  background: linear-gradient(to right, #409eff,#f3532b); /* 渐变色设置 */
 -webkit-background-clip: text; /* 将背景剪裁为文本 */
 -webkit-text-fill-color: transparent; /* 使文本填充透明以显示背景色 */
  background-image: radial-gradient(circle 50vw at 100% 0,#00fefe,transparent),radial-gradient(circle 50vw at 20% 25vw,#9b00cc,transparent),linear-gradient(180deg,#3f007e,#502cba 25vw,#05122b 50vw);
  font-size: 42px;
}

.glitch-text {
  position: relative;
  margin-bottom: 30px;
}

.main-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.main-heading::before,
.main-heading::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-heading::before {
  color: var(--primary);
  animation: glitch-1 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.main-heading::after {
  color: var(--secondary);
  animation: glitch-2 3s infinite;
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(-2px, 2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(-2px, -2px); }
}

.hero-description {
  font-size: 1.2rem;
  color: #a0a0c0;
  padding-bottom: 40px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.cyber-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.cyber-button.primary {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: var(--darker);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.cyber-button.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.cyber-button:hover::before {
  left: 100%;
}

.cyber-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 243, 255, 0.4);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-cube {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 15s infinite linear;
}

@keyframes rotateCube {
  0% { transform: rotateX(0) rotateY(0); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-face {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 243, 255, 0.1);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.cube-face:nth-child(1) { transform: translateZ(75px); }
.cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(75px); }
.cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(75px); }
.cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(75px); }
.cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(75px); }
.cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(75px); }

/* 区块通用样式 */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary);
}

/* 关于我们 */
.about-section {
  background: rgba(10, 10, 26, 0.5);
  border-radius: 20px;
  padding: 80px;
  border: 1px solid rgba(0, 243, 255, 0.1);
  backdrop-filter: blur(10px);
}

.about-text p {
  font-size: 1.1rem;
  color: #a0a0c0;
  margin-bottom: 30px;
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  display: flex;
  gap: 20px;
  background: rgba(42, 42, 74, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: var(--transition);
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.info-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--light);
}

.card-content p {
  font-size: 1rem;
  color: #a0a0c0;
  margin: 0;
  line-height: 1.6;
}

/* 服务范围 */
.services-section {
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 243, 255, 0.05), transparent 70%);
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(10, 10, 26, 0.7);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 243, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(255, 0, 200, 0.1));
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--light);
}

.service-card p {
  color: #a0a0c0;
  font-size: 1rem;
  line-height: 1.6;
}

/* 联系方式 */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: rgba(10, 10, 26, 0.7);
  border-radius: 15px;
  padding: 50px;
  border: 1px solid rgba(0, 243, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--light);
}

.contact-info p {
  font-size: 1.1rem;
  color: #a0a0c0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--light);
}

.contact-text p {
  margin: 0;
  font-size: 1rem;
  color: #a0a0c0;
}

.contact-form {
  background: rgba(10, 10, 26, 0.7);
  border-radius: 15px;
  padding: 50px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--light);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px;
  background: rgba(42, 42, 74, 0.3);
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 8px;
  color: var(--light);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* 页脚 */
.cyber-footer {
  background: rgba(5, 5, 16, 0.9);
  border-top: 1px solid rgba(0, 243, 255, 0.1);
  padding: 70px 50px 0 50px;
  margin-top: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo .cyber-logo {
  width: 50px;
  height: 50px;
}

.footer-logo h3 {
  font-size: 1.2rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #a0a0c0;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact h4 {
  color: var(--light);
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-contact p {
  color: #a0a0c0;
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(42, 42, 74, 0.3);
  color: var(--light);
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 243, 255, 0.1);
  color: #a0a0c0;
  font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .main-heading {
    font-size: 3rem;
  }
  
  .about-section {
    padding: 50px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 80px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-section {
    padding: 40px 20px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cyber-header {
    padding: 10px;
    flex-direction: column;
  }
  .logo-container {
    display: flex;
    width: 100%;
    align-items: self-start;
  }
  .cyber-nav ul {
    gap: 25px;
  }
  
  .main-heading {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px;
  }
  .cyber-footer {
    padding: 30px 10px 0 10px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .main-heading {
    font-size: 2rem;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .cyber-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cyber-button {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-info,
  .contact-form {
    padding: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    gap: 10px;
  }
}