body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  position: relative;
  overflow-x: hidden;
}

/* Light subtle pattern background */
.pattern-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 25px 25px, rgba(59, 130, 246, 0.08) 2px, transparent 0),
    radial-gradient(circle at 75px 75px, rgba(37, 211, 102, 0.05) 2px, transparent 0),
    linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(241,245,249,0.98));
  background-size: 100px 100px, 100px 100px, 100% 100%;
  z-index: 0;
}

.hero-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
  position: relative;
  z-index: 1;
}

.coming-card {
  max-width: 760px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  text-align: center;
  padding: 40px 24px;
}

.logo-img {
  max-width: 520px;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.sub-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #334155;
  margin-bottom: 10px;
  font-weight: 500;
}

.coming-text {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 30px;
}

.contact-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px;
}

.contact-link {
  color: #0f172a;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-1px);
}

.phone-link:hover {
  color: #2563eb;
}

.contact-link[href*="wa.me"]:hover {
  color: #16a34a;
}

.icon-circle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 1.2rem;
}

.whatsapp-circle {
  background: #dcfce7;
  color: #16a34a;
}