* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  min-width: 100vw;
  min-height: 100vh;
  background: #fff;
  color: #666;
  overflow: hidden;
  
}

a {
  a[x-apple-data-detectors],
  a[x-apple-data-detectors] *,
  a[href^="tel"],
  a[href^="mailto"] {
  color: #999 !important;
  text-decoration: none !important;
  font-weight: inherit;
}
}
.itel a, .imail a {
  color: #999 !important;
  text-decoration: none !important;
  font-weight: inherit;
}

/* ===== Hoa văn nền SVG ===== */
.bg-pattern {
  position: fixed;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.top-left {
  top: 0;
  left: 0;
  width: 20vw;
  height: 90vw;
  max-width: 600px;
  max-height: 600px;
  background-image: url("../images/pattern-top-left.svg");
  background-position: bottom;
  background-size: 100% auto;
}

.bottom-right {
  bottom: 0;
  right: 0;
  width: 20vw;
  height: 90vw;
  max-width: 600px;
  max-height: 600px;
  background-image: url("../images/pattern-bottom-right.svg");
  background-size: 100% auto;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

}

.logo {
  max-width: 644px;
  height: auto;
  margin-bottom: 30px;
}

.coming-soon {
  max-width: 250px;
  height: auto;
  max-height: 34.3px;
}


/* ===== Footer ===== */
.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #999;
}

/* === icon === */
.iadd {
  background: url(../images/iadd.svg) no-repeat;
  padding: 1px 0 0 30px;
}

.itel {
  background: url(../images/itel.svg) no-repeat;
  padding: 1px 0 0 30px;
}

.imail {
  background: url(../images/imail.svg) no-repeat;
  padding: 1px 0 0 30px;
}

.iweb {
  background: url(../images/iweb.svg) no-repeat;
  padding: 1px 0 0 30px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

  .logo {
    width: min(85vw, 300px);
    margin-bottom: 0px;
  }

  .coming-soon {
    width: min(70vw, 200px);
  }

  .footer-inner {
    width: 65vw;
    flex-direction: column;
    align-items: left;
    gap: 8px;
    text-align: left;
  }

  .top-left,
  .bottom-right {
    width: 55vw;
    height: 55vw;
    max-width: 280px;
  }

  
}
