.hero-title {
      letter-spacing: .02em;
      line-height: 1.05;
      text-shadow: 0 6px 30px rgba(124,92,255,.18), 0 1px 0 rgba(255,255,255,.06);
      transform: translateZ(0);
    }
    .hero-sub { color: var(--muted); max-width: 72ch; margin-inline: auto; }
    .cta-band { position: relative; isolation: isolate; }
    .cta-band::after{
      content:"";
      position:absolute; inset:-40px -10%;
      background: radial-gradient(65% 60% at 50% 45%, rgba(124,92,255,.08), transparent 60%);
      filter: blur(20px);
      z-index:-1;
    }
    @media (prefers-reduced-motion:no-preference){
      .hero-wrap { perspective: 800px }
      .hero-title { transition: transform .2s ease; will-change: transform }
    }
    
    .card-glass{
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      box-shadow: 0 8px 18px rgba(0,0,0,.25);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
      backdrop-filter: blur(8px);
    }
    .card-glass:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(0,0,0,.35);
      border-color: rgba(124,92,255,.35);
    }
    .card-glass .card-title{ font-weight: 700; letter-spacing: .02em; }
    
    .btn-accent{
      background: linear-gradient(135deg,#6aa8ff,#7c5cff);
      border: 1px solid rgba(255,255,255,.16);
      color: #eaf0ff;
      box-shadow: 0 6px 24px rgba(124,92,255,.25);
    }
    .btn-accent:hover{ filter: brightness(1.06) }
    .btn-accent:focus-visible{
      outline: 0;
      box-shadow: 0 0 0 3px rgba(124,92,255,.35);
    }
    
    .capabilities-grid{
      display: grid;
      grid-template-columns: repeat(12, minmax(0,1fr));
      gap: 18px;
      content-visibility: auto;
    }
    .capabilities-grid > article{ grid-column: span 4; }
    @media (max-width: 992px){
      .capabilities-grid > article{ grid-column: span 6 }
    }
    @media (max-width: 600px){
      .capabilities-grid > article{ grid-column: span 12 }
    }
    .cap-card{ padding: 18px }
    .cap-card .thumb{
      aspect-ratio: 16/9;
      border-radius:12px;
      background: #121826;
      display:block;
    }


.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
  position: relative;
}

.contact-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  max-width: 850px;
  width: 100%;
  box-shadow: 0 0 25px rgba(100, 130, 255, 0.05);
  backdrop-filter: blur(6px);
  color: #fff;
  position: relative;
  z-index: 2;
}


.glow-title {
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  display: inline-block;
  position: relative;
}
.glow-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, rgba(150,180,255,0), rgba(150,180,255,0.5), rgba(150,180,255,0));
  transform: translateX(-50%);
  animation: glowline 2.5s ease-in-out 0.5s forwards;
}
@keyframes glowline {
  0% { width: 0%; opacity: 0; }
  50% { width: 60%; opacity: 1; }
  100% { width: 40%; opacity: 0.7; }
}


.fade-in {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }
.delay-3 { animation-delay: 1.2s; }


.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #aab4d9;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s ease, background 0.3s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(150,180,255,0.4);
  background: rgba(255,255,255,0.05);
}

.form-buttons {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.contact-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.contact-btn.secondary {
  opacity: 0.7;
}
.contact-btn:hover {
  background: rgba(150,180,255,0.15);
  box-shadow: 0 0 15px rgba(140,170,255,0.25);
}


.alert-success {
  background: rgba(0,255,0,0.05);
  border: 1px solid rgba(0,255,0,0.1);
  border-radius: 8px;
  color: #b6ffb3;
  margin-top: 1.5rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
}


@media (max-width: 768px) {
  .contact-inner { padding: 2rem 1.4rem; }
  .form-grid { grid-template-columns: 1fr; }
}
