:root {
  --bg-dark: #070b1a;
  --bg-deep: #0f1730;
  --accent-blue: #1b78ff;
  --accent-purple: #6f4bff;
  --text-light: #d8e2ff;
  --text-white: #ffffff;
  --success: #14c38e;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(145deg, var(--bg-dark), #0d1230 60%, #121b3d);
  color: var(--text-light);
  line-height: 1.65;
}

.navbar {
  background: rgba(7, 11, 26, 0.92);
  backdrop-filter: blur(8px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
}

.navbar-brand,
.nav-link,
.section-title,
h1,
h2,
h3,
h4,
h5 {
  color: var(--text-white) !important;
}

.nav-link {
  opacity: 0.88;
}

.nav-link:hover,
.nav-link.active {
  color: #99beff !important;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(111, 75, 255, 0.28), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(27, 120, 255, 0.3), transparent 35%),
    rgba(2, 6, 23, 0.62);
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.btn-brand {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  color: var(--text-white);
  border: 0;
  font-weight: 600;
}

.btn-brand:hover {
  color: var(--text-white);
  filter: brightness(1.1);
}

.btn-outline-brand {
  border: 1px solid #7fa8ff;
  color: #cfe0ff;
}

.btn-outline-brand:hover {
  background: #1d3268;
  color: #fff;
}

.section-pad {
  padding: 84px 0;
}

.glass-card {
  background: linear-gradient(145deg, rgba(20, 28, 58, 0.85), rgba(11, 20, 45, 0.7));
  border: 1px solid rgba(136, 170, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(6, 11, 29, 0.35);
}

.service-card,
.portfolio-card,
.testimonial-card {
  height: 100%;
  transition: transform 0.28s ease;
}

.service-card:hover,
.portfolio-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
}

.placeholder-img {
  width: 100%;
  border-radius: 12px;
  border: 1px dashed rgba(159, 188, 255, 0.44);
}

.trusted-strip img {
  max-height: 45px;
  opacity: 0.85;
  filter: grayscale(100%);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(129, 164, 255, 0.2);
  border-bottom: 1px solid rgba(129, 164, 255, 0.2);
  background: rgba(9, 16, 38, 0.65);
}

.ticker-track {
  display: inline-block;
  padding: 14px 0;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  margin: 0 28px;
  color: #b4ccff;
  font-weight: 600;
}

@keyframes ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.stat-pill {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(132, 167, 255, 0.35);
  border-radius: 999px;
  margin: 4px;
  color: #e9f0ff;
}

.tech-badge {
  display: inline-block;
  margin: 6px 8px 0 0;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(21, 41, 90, 0.75);
  border: 1px solid rgba(132, 167, 255, 0.26);
}

.cta-band {
  background: linear-gradient(100deg, rgba(26, 68, 170, 0.86), rgba(99, 53, 200, 0.88));
  border-radius: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(6, 18, 8, 0.45);
}

.form-control,
.form-select {
  background: rgba(16, 26, 55, 0.85);
  border: 1px solid rgba(124, 159, 240, 0.34);
  color: #e7efff;
}

.form-control:focus,
.form-select:focus {
  background: rgba(16, 26, 55, 0.95);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(111, 75, 255, 0.25);
  border-color: #8a77ff;
}

footer {
  border-top: 1px solid rgba(129, 164, 255, 0.22);
  background: rgba(7, 11, 26, 0.9);
}

.footer-link {
  color: #c5d7ff;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

.muted {
  color: #afc3ef;
}
