* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: #16356b;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.72) 42%,
      rgba(220, 240, 255, 0.34) 100%
    ),
    url("/coming-soon/medora-tech-solutions-coming-soon-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.coming-soon {
  width: 100%;
  height: 100vh;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 1180px;
  text-align: center;
  transform: translateY(-8px);
}

/* LOGO */
.logo {
  margin-bottom: 16px;
}

.logo h1 {
  font-size: 72px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 10px;
  background: linear-gradient(90deg, #003f91 5%, #004f9f 45%, #00abc7 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo p {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 14px;
  color: #08224f;
}

/* TOP SMALL LINE */
.brand-line {
  width: 104px;
  height: 3px;
  margin: 0 auto 45px;
  border-radius: 50px;
  background: #00abc7;
}

/* HEADING */
h2 {
  font-size: 56px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 7px;
  color: #08224f;
}

h2 span {
  color: #00abc7;
}

/* HEART PULSE DIVIDER */
.pulse-divider {
  width: 330px;
  margin: 20px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #00abc7;
}

.pulse-line {
  width: 120px;
  height: 1px;
  background: rgba(21, 80, 157, 0.28);
}

.pulse-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #00abc7;
}

/* DESCRIPTION */
.description {
  max-width: 550px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  color: #244474;
}

/* SERVICES */
.services {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  list-style: none;
}

.services li {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #08224f;
  white-space: nowrap;
}

.services li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: #00abc7;
  transform: translateY(-50%);
}

/* CONTACT */
.contact {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.contact a,
.contact div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #08224f;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.contact a:not(:last-child),
.contact div:not(:last-child) {
  padding-right: 50px;
  border-right: 1px solid rgba(21, 80, 157, 0.28);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.35);
  color: #15509d;
  font-size: 20px;
}

/* FOOTER */
.footer {
  margin-top: 60px;
  font-size: 14px;
  color: #183d77;
}

/* LAPTOP */
@media (max-width: 1366px) {
  .logo h1 {
    font-size: 72px;
  }

  .logo p {
    font-size: 15px;
    letter-spacing: 14px;
  }

  .brand-line {
    margin-bottom: 28px;
  }

  h2 {
    font-size: 58px;
  }

  .description {
    font-size: 20px;
  }

  .contact {
    margin-top: 30px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .coming-soon {
    padding: 30px 22px;
  }

  .logo h1 {
    font-size: 60px;
    letter-spacing: 7px;
  }

  .logo p {
    font-size: 14px;
    letter-spacing: 10px;
  }

  .brand-line {
    width: 86px;
    margin-bottom: 26px;
  }

  h2 {
    font-size: 46px;
    letter-spacing: 4px;
  }

  .description {
    max-width: 720px;
    font-size: 18px;
  }

  .services {
    margin-top: 24px;
    gap: 28px;
  }

  .contact {
    gap: 24px;
  }

  .contact a:not(:last-child),
  .contact div:not(:last-child) {
    padding-right: 24px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .coming-soon {
    padding: 24px 18px;
  }

  .content {
    transform: translateY(0);
  }

  .logo {
    margin-bottom: 12px;
  }

  .logo h1 {
    font-size: 48px;
    letter-spacing: 5px;
  }

  .logo p {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 6px;
  }

  .brand-line {
    width: 76px;
    height: 2px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: 3px;
  }

  .pulse-divider {
    width: 260px;
    margin: 16px auto 16px;
    gap: 10px;
  }

  .pulse-line {
    width: 96px;
  }

  .pulse-icon {
    width: 22px;
    height: 22px;
  }

  .description {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.45;
  }

  .services {
    margin-top: 16px;
    gap: 10px 18px;
  }

  .services li {
    font-size: 12px;
  }

  .services li::after {
    display: none;
  }

  .contact {
    margin-top: 18px;
    flex-direction: column;
    gap: 9px;
  }

  .contact a,
  .contact div {
    font-size: 13px;
  }

  .contact a:not(:last-child),
  .contact div:not(:last-child) {
    padding-right: 0;
    border-right: 0;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .footer {
    margin-top: 14px;
    font-size: 11px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 40px;
    letter-spacing: 4px;
  }

  .logo p {
    font-size: 11px;
    letter-spacing: 4px;
  }

  h2 {
    font-size: 29px;
    letter-spacing: 2px;
  }

  .pulse-divider {
    width: 220px;
  }

  .pulse-line {
    width: 78px;
  }

  .description {
    font-size: 14px;
  }

  .services li {
    font-size: 11px;
  }
}

/* SHORT HEIGHT SCREENS */
@media (max-height: 650px) {
  .coming-soon {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo {
    margin-bottom: 7px;
  }

  .logo h1 {
    font-size: 52px;
  }

  .logo p {
    margin-top: 6px;
    font-size: 12px;
  }

  .brand-line {
    height: 2px;
    margin-bottom: 12px;
  }

  h2 {
    font-size: 42px;
  }

  .pulse-divider {
    margin: 8px auto 10px;
  }

  .description {
    font-size: 15px;
    line-height: 1.35;
  }

  .services {
    margin-top: 10px;
  }

  .contact {
    margin-top: 12px;
  }

  .footer {
    margin-top: 10px;
  }
}