/* ===== BRAND VARIABLES ===== */
:root {
  --bg: #000000;
  --bg-soft: #0d0d0d;

  --primary: #6C5CE7;
  --secondary: #00D4FF;

  --text: #ffffff;
  --text-muted: #aaaaaa;
  --border: rgba(255,255,255,0.08);
  
  --lspl: #666; 
}

/* BASE */
body {
  margin: 0;
  font-family: 'Inter','Segoe UI',sans-serif;
  background: radial-gradient(circle at top, var(--bg-soft), var(--bg));
  color: var(--text);
}

/* HEADER / NAV */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

header h1 {
  margin: 0;
}

/* NAV */
nav a {
  margin-left: 25px;
  color: var(--text-muted);
  text-decoration: none;
}

nav a:hover {
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

nav a.active {
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero h2 {
  font-size: 56px;
  line-height: 1.2;
}

.hero span {
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

/* CTA */
.cta-group {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 26px;
  border-radius: 30px;
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid var(--primary);
  padding: 12px 26px;
  border-radius: 30px;
  color: var(--primary);
  text-decoration: none;
}

/* SECTION */
section { padding: 80px 8%; }

/* CARD */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 15px;
}

/* ABOUT */
.about-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.about-image {
  flex: 1;
  max-width: 350px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.about-text {
  flex: 2;
}

/* SERVICES */
.services-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.service-card {
  padding: 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 20px 60px rgba(0,212,255,0.15);
}

/* FORM */
input, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: #111;
  border: none;
  border-radius: 8px;
  color: var(--text);
}

button {
  margin-top: 15px;
  padding: 12px 25px;
  border-radius: 25px;
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  border: none;
  font-weight: bold;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #777;
}

footer .lspl{
  color:var(--lspl);
  font-size:13px;
}

/* WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: 0.3s;
  
  /* subtle pulse base */
  animation: pulse 2s infinite;
}

.wa-float img { width: 26px; }

/* HOVER */
.wa-float:hover {
  transform: scale(1.1);
  animation: none; /* stop pulse on hover for premium feel */
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,212,255,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0,212,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
}

/* ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media(max-width:768px){
  .hero h2 { font-size: 34px; }
  .about-container { flex-direction: column; text-align:center; }
  .about-image { max-width: 250px; }
}