/* PAGE ROOT SCOPE */
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e8fb00d;
  margin-top: 60px;
}

/* ONLY HOME CONTAINER */
.home .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 80px;
  margin: 0 auto;
}

/* LEFT */
.home .mobileleft {
  display: none;
}

/* RIGHT */
.home .right {
  padding-left: 20px;
  flex: 1;
}

.home .right h1 {
  font-size: 56px;
  font-weight: 700;
  color: #0e8fb0;
  line-height: 1.3;
  margin: 0;
}

.home .right h1 span {
  color: #334155;
}

.home .subtitle {
  margin-top: 16px;
  font-size: 24px;
  color: #6b7280;
  line-height: 1.7;
  letter-spacing: 0.8px;
  max-width: 600px;
  font-weight: 600;
}

.home .right p {
  margin-top: 20px;
  font-size: 20px;
  color: #0e8fb0;
  line-height: 1.6;
  max-width: 600px;
  letter-spacing: 0.7px;
}

/* BUTTON */
.home .actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.home .primary {
  background: #10a3c5;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home .primary span {
  font-size: 20px;
  font-weight: 500;
}

.home .primary:hover {
  background: #0d74d1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.home .primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* MOBILE */
@media (max-width: 600px) {
  .home .container {
    flex-direction: column-reverse;
    background: #0e8fb00d;
  }

  .home .left {
    display: none;
  }

  .home .right {
    padding-top: 60px;
    padding-bottom: 40px;
    width: 100%;
  }

  .home .right h1 {
    font-size: 42px;
  }

  .home .right h1 span {
    font-size: 28px;
  }

  .home .subtitle {
    font-size: 18px;
  }

  .home .right p {
    font-size: 16px;
  }

  .home .actions {
    margin-top: 15px;
  }

  .home .primary {
    padding: 12px 16px;
  }

  .home .primary span {
    font-size: 16px;
  }
}
