* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #07111f;
  color: white;
  line-height: 1.6;
}

section {
  padding: 90px 8%;
}

h1, h2, h3 {
  line-height: 1.3;
}

h2 {
  font-size: 42px;
  margin-bottom: 30px;
  text-align: center;
}

p {
  color: #d0d8e6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  min-height: 90px;
  background: rgba(7, 17, 31, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.logo h2 {
  font-size: 28px;
  margin: 0;
  text-align: left;
}

.logo span {
  color: #d4af37;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 14px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 24px;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

.line-btn {
  background: #06C755;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 0 18px rgba(6,199,85,0.45);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 160px 8% 80px;
  gap: 60px;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.28), transparent 35%),
    linear-gradient(135deg, #08101d, #102847);
}

.hero-left {
  flex: 1;
  max-width: 52%;
}

.hero-left h1 {
  font-size: 64px;
  margin-bottom: 25px;
}

.hero-left p {
  font-size: 22px;
  margin-bottom: 24px;
}

.hero-left ul {
  list-style: none;
  margin-bottom: 35px;
}

.hero-left li {
  margin-bottom: 12px;
  font-size: 20px;
}

.hero-right {
  flex: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 700px;
  max-width: none;
  transform: scale(1.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.cta-btn {
  display: inline-block;
  padding: 18px 42px;
  background: #06C755;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 0 22px rgba(6,199,85,0.5);
  animation: glow 1.8s infinite alternate;
}

@keyframes glow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(6,199,85,0.85);
  }
}

/* Features */
.features {
  background: rgba(255,255,255,0.02);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 32px 24px;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.18);
  backdrop-filter: blur(10px);
}

.card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 24px;
}

/* Services */
.services {
  text-align: center;
}

.service-text {
  max-width: 800px;
  margin: auto;
  font-size: 20px;
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-list div {
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.15),
    rgba(255,255,255,0.04)
  );
  padding: 26px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
}

/* Process */
.process {
  background: rgba(255,255,255,0.02);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-box {
  background: rgba(255,255,255,0.05);
  padding: 35px 25px;
  border-radius: 22px;
  text-align: center;
}

.step-box span {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f4df87);
  color: #07111f;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Reviews */
.reviews {
  text-align: center;
}

.review-box {
  max-width: 850px;
  margin: 0 auto 24px auto;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
}

/* Contact */
.contact {
  background: rgba(255,255,255,0.02);
}

form {
  max-width: 650px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 14px;
  border: none;
  outline: none;
  font-size: 17px;
}

form button {
  padding: 20px;
  border: none;
  border-radius: 14px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(135deg, #d4af37, #f7e392);
}

/* QR */
.qr-section {
  text-align: center;
}

.qr-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.qr-wrapper img {
  width: 260px;
  border-radius: 24px;
  background: white;
  padding: 18px;
}

/* FAQ */
.faq {
  background: rgba(255,255,255,0.02);
}

.faq-item {
  max-width: 900px;
  margin: 0 auto 24px auto;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
}

.faq-item h3 {
  color: #d4af37;
  margin-bottom: 12px;
}

/* Footer */
.footer {
  padding: 60px 8%;
  text-align: center;
  background: #050c16;
}

/* Floating LINE */
.floating-line {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #06C755;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 28px rgba(6,199,85,0.5);
  z-index: 9999;
}

/* Mobile */
@media (max-width: 960px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 8px 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 180px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .hero-left p,
  .hero-left li {
    font-size: 18px;
  }

  .hero-right img {
    width: 360px;
    max-width: 95%;
    transform: none;
    margin-top: 30px;
  }

  .cards,
  .service-list,
  .steps {
    grid-template-columns: 1fr;
  }

  section {
    padding: 70px 6%;
  }
}