* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #080b17;
  color: #ffffff;
  position: relative;
}

a{
color: inherit;
text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
}

.glow-1 {
  width: 280px;
  height: 280px;
  background: #00f0ff;
  top: 40px;
  left: -80px;
}

.glow-2 {
  width: 320px;
  height: 320px;
  background: #8b5cf6;
  bottom: 40px;
  right: -100px;
}

.header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background: rgba(8, 11, 23, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00eaff, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-text span {
  color: #00eaff;
}

.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav a {
  color: #d9e1ff;
  font-weight: 600;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #00eaff;
}

.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 60px 0 70px;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(0, 234, 255, 0.12);
  border: 1px solid rgba(0, 234, 255, 0.35);
  border-radius: 999px;
  color: #6ff7ff;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #c9d4ff;
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s ease;
  min-height: 52px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #00eaff, #1d9bf0);
  color: #06111d;
  box-shadow: 0 10px 25px rgba(0, 234, 255, 0.25);
}

.btn-secondary {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25);
}

.full {
  width: 100%;
}

.mini-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 20px;
  min-width: 130px;
}

.info-card h3 {
  font-size: 24px;
  color: #00eaff;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 14px;
  color: #c9d4ff;
  margin: 0;
}

.hero-image-card {
  position: relative;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,234,255,0.25), rgba(139,92,246,0.25));
  box-shadow: 0 0 40px rgba(0,234,255,0.15);
  animation: floatCard 3s ease-in-out infinite;
}

.hero-image-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
  min-height: 320px;
  object-fit: cover;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.features,
.inner-page {
  padding: 40px 0 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title.left {
  text-align: left;
}

.section-title h2,
.section-title h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.section-title p {
  color: #c9d4ff;
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid,
.steps-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-box,
.step-box,
.contact-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  transition: 0.3s;
}

.feature-box:hover,
.step-box:hover,
.contact-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0,234,255,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-box h3,
.step-box h3,
.contact-box h3 {
  margin-bottom: 12px;
  color: #00eaff;
}

.feature-box p,
.step-box p,
.contact-box p,
.contact-box a {
  color: #dbe4ff;
  line-height: 1.7;
}

.step-box span {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 800;
  color: #8b5cf6;
}

.page-action {
  margin-top: 30px;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  color: #b9c3e6;
  background: rgba(255,255,255,0.02);
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 150;
}

/* MODAL FIX */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.72);
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  width: 100%;
  max-width: 430px;
  background: #12182c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.2;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0d1324;
  color: #fff;
  outline: none;
}

.modal-form input:focus {
  border-color: #00eaff;
}

.close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.close:hover {
  background: rgba(255,255,255,0.16);
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-left h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    justify-content: center;
    gap: 16px;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .section-title h2,
  .section-title h1 {
    font-size: 30px;
  }

  .feature-grid,
  .steps-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mini-info {
    flex-direction: column;
  }

  .modal-content {
    padding: 24px 18px;
  }
}